From 0bed2a9540720253b30136539f1bf1f901e28a34 Mon Sep 17 00:00:00 2001 From: ThePhD Date: Thu, 25 Feb 2016 03:45:44 -0500 Subject: [PATCH] Alll the include files! --- bootstrap.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bootstrap.py b/bootstrap.py index 31ee09a3..6b694f06 100755 --- a/bootstrap.py +++ b/bootstrap.py @@ -88,7 +88,9 @@ if args.ci: ldflags.extend(library_includes(['lib'])) include.extend(['./include']) if args.lua_lib: - include.extend(['/usr/include/' + args.lua_lib, './include']) + include.extend(['/usr/include/' + args.lua_lib]) + else: + include.extend(['/usr/include/lua-5.3', '/usr/include/lua-5.2', '/usr/include/lua-5.1']) cxxflags.extend(['-std=c++1y']) else: cxxflags.extend(['-std=c++14'])