Module: sip-router
Branch: master
Commit: 1d4f8bbf2e3889c9c5279bf81ec832fb86b69112
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=1d4f8bb…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Tue Aug 23 00:27:10 2011 +0200
app_lua: fixed assignments for Makefile vars
---
modules/app_lua/Makefile | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/app_lua/Makefile b/modules/app_lua/Makefile
index e4dbc69..1a8d753 100644
--- a/modules/app_lua/Makefile
+++ b/modules/app_lua/Makefile
@@ -33,12 +33,12 @@ ifeq ($(BUILDER),)
LIBS= -llua5.1
endif
else
- DEFS+ = $(shell pkg-config --cflags lua)
+ DEFS+= $(shell pkg-config --cflags lua)
LIBS = $(shell pkg-config --libs lua)
endif
endif
else
- DEFS+ = $(shell lua-config --include)
+ DEFS+= $(shell lua-config --include)
LIBS = $(shell lua-config --libs)
endif