From 98800f0a73249e8eabd26096ad4fca36ed8486dd Mon Sep 17 00:00:00 2001 From: rxi Date: Sat, 15 Oct 2016 14:44:20 +0100 Subject: [PATCH] Added 'src' to build.py's INCLUDES --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index c2a121f..5a2435c 100755 --- a/build.py +++ b/build.py @@ -11,7 +11,7 @@ TEMPSRC_DIR = ".tempsrc" CFLAGS = [ "-O2", "-Wall", "-s", "-Wno-misleading-indentation" ] DLIBS = [ "m" ] DEFINES = [ "DMT_ABORT_NULL", "LUA_COMPAT_ALL" ] -INCLUDES = [ TEMPSRC_DIR ] +INCLUDES = [ "src", TEMPSRC_DIR ] def fmt(fmt, var):