summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2013-04-27 11:07:03 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2013-04-27 11:07:03 +0100
commite9886578206917bd7e53f0906cc9c0cf5b461ab9 (patch)
treec5903f277345ffae608cad45329cdbe3a128813c
parent5e616903f471bcfa5e483bc0b9f1fdbbd88f23ef (diff)
downloadluxio-e9886578206917bd7e53f0906cc9c0cf5b461ab9.tar.gz
The LUAxx_HAS_MODINST commands were using shell expansion syntax in Make. Fix this
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index eda70d3..8ddab97 100644
--- a/Makefile
+++ b/Makefile
@@ -49,7 +49,7 @@ endif
ifneq ($(LUA51_PKG),NONE)
$(info Luxio: Lua 5.1 package name on this system is $(LUA51_PKG))
- LUA51_HAS_MODINST := $(shell (test x`pkg-config --variable INSTALL_LMOD $LUA51_PKG` != x && echo YES))
+ LUA51_HAS_MODINST := $(shell test x`pkg-config --variable INSTALL_LMOD $(LUA51_PKG)` != x && echo YES)
LUA51_INC := $(shell pkg-config --cflags $(LUA51_PKG))
LUA51_LIB := $(shell pkg-config --libs $(LUA51_PKG))
ifeq ($(LUA51_HAS_MODINST),)
@@ -86,7 +86,7 @@ endif
ifneq ($(LUA52_PKG),NONE)
$(info Luxio: Lua 5.2 package name on this system is $(LUA52_PKG))
- LUA52_HAS_MODINST := $(shell (test x`pkg-config --variable INSTALL_LMOD $LUA52_PKG` != x && echo YES))
+ LUA52_HAS_MODINST := $(shell test x`pkg-config --variable INSTALL_LMOD $(LUA52_PKG)` != x && echo YES)
LUA52_INC := $(shell pkg-config --cflags $(LUA52_PKG))
LUA52_LIB := $(shell pkg-config --libs $(LUA52_PKG))
ifeq ($(LUA52_HAS_MODINST),)