summaryrefslogtreecommitdiff
path: root/tools/sed
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-08-10 21:41:44 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-08-10 21:41:44 +0000
commit638a3eb4fd814af4e368e339870c124de45692d4 (patch)
tree04187c24016a1e0e27e9b853961bc61d4e7e8299 /tools/sed
parent65d6a44baa03848269a98d9278e5c406e3176f09 (diff)
downloadmtk-20170518-638a3eb4fd814af4e368e339870c124de45692d4.zip
mtk-20170518-638a3eb4fd814af4e368e339870c124de45692d4.tar.gz
mtk-20170518-638a3eb4fd814af4e368e339870c124de45692d4.tar.bz2
sed: unconditionally disable SELinux, NLS and ACL support (#12007)
SVN-Revision: 33119
Diffstat (limited to 'tools/sed')
-rw-r--r--tools/sed/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/sed/Makefile b/tools/sed/Makefile
index 6c0c948..019df95 100644
--- a/tools/sed/Makefile
+++ b/tools/sed/Makefile
@@ -17,6 +17,13 @@ export SED:=
include $(INCLUDE_DIR)/host-build.mk
+HOST_CONFIGURE_ARGS += \
+ --disable-acl \
+ --disable-nls \
+
+HOST_CONFIGURE_VARS += \
+ ac_cv_search_setfilecon=no \
+
define Host/Compile
$(MAKE) -C $(HOST_BUILD_DIR) SHELL="$(BASH)" LDFLAGS="-static"
endef