From 3c8418d3244860be1c2f7bd6028f5b36a57afaa3 Mon Sep 17 00:00:00 2001 From: Sergey Lyubka <valenok@gmail.com> Date: Sat, 7 Sep 2013 07:07:07 +0100 Subject: [PATCH] Removed -I$(LUA) from LUA_FLAGS --- build/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Makefile b/build/Makefile index e3e94e099..50eb0d692 100644 --- a/build/Makefile +++ b/build/Makefile @@ -25,7 +25,7 @@ CFLAGS = -std=c99 -O2 -W -Wall -pedantic -pthread -pipe -I.. $(COPT) # To build with Lua, download and unzip Lua 5.2.1 source code into the # mongoose directory, and then add $(LUA_SOURCES) to CFLAGS LUA = ../lua-5.2.1/src -LUA_FLAGS = -DLUA_COMPAT_ALL -I$(LUA) +LUA_FLAGS = -DLUA_COMPAT_ALL LUA_SOURCES = $(LUA)/lapi.c $(LUA)/lcode.c $(LUA)/lctype.c \ $(LUA)/ldebug.c $(LUA)/ldo.c $(LUA)/ldump.c \ $(LUA)/lfunc.c $(LUA)/lgc.c $(LUA)/llex.c \ -- GitLab