From e9b46ce12d4ab204cd4a13999c0e04107c8f7d7d Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 5 Sep 2008 01:59:14 +0200 Subject: [PATCH] fix lua binding include path --- lua/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/Makefile b/lua/Makefile index 7dbe696..ba5205f 100644 --- a/lua/Makefile +++ b/lua/Makefile @@ -18,7 +18,7 @@ libdir=$(prefix)/libs luadir=$(if $(LUA_PLUGINDIR),$(LUA_PLUGINDIR),$(libdir)/lua/$(LUA_VERSION)) luainc=$(shell pkg-config --silence-errors --cflags lua$(LUA_VERSION)) -CPPFLAGS=-I.. -I$(if $(luainc),$(luainc),$(LUA_PREFIX)/include) +CPPFLAGS=-I.. $(if $(luainc),$(luainc), -I$(LUA_PREFIX)/include) LIBS=-L.. -luci $(shell pkg-config --silence-errors --libs lua$(LUA_VERSION)) PLUGIN_LD=$(CC) -- 2.11.0