aboutsummaryrefslogtreecommitdiff
path: root/lang/luasec
diff options
context:
space:
mode:
authorEneas U de Queiroz <cote2004-github@yahoo.com>2019-04-03 17:58:56 -0300
committerEneas U de Queiroz <cote2004-github@yahoo.com>2019-04-03 18:00:23 -0300
commitaa2f0987d6a1a08c8a8e34c7f4eb075c2a027b06 (patch)
tree470169997d3d3ad122829c27ecf847e091523a2c /lang/luasec
parente3f1532297bdc0fb1fb9bacd1a51405753d332f9 (diff)
luasec: cleanup Makefile
The LIBDIR and INCDIR assignments are duplicate of the original Makefile, changing LIB_PATH and INC_PATH to LDFLAGS and CPPFLAGS. Setting LIB_PATH and INC_PATH to empty strings will do the same without duplicating the flags. Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
Diffstat (limited to 'lang/luasec')
-rw-r--r--lang/luasec/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/luasec/Makefile b/lang/luasec/Makefile
index 79120bbc4..621cb7af6 100644
--- a/lang/luasec/Makefile
+++ b/lang/luasec/Makefile
@@ -46,8 +46,8 @@ TARGET_LDFLAGS += $(FPIC)
MAKE_FLAGS += \
LD="$(TARGET_CC)" \
- INCDIR="$(TARGET_CPPFLAGS) -I." \
- LIBDIR="$(TARGET_LDFLAGS) -L./luasocket" \
+ INC_PATH="" \
+ LIB_PATH="" \
LUACPATH="$(PKG_INSTALL_DIR)/usr/lib/lua" \
LUAPATH="$(PKG_INSTALL_DIR)/usr/lib/lua"