From: Russell Senior Date: Tue, 10 Mar 2020 00:20:39 +0000 (-0700) Subject: sed: disable acl X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=d56990cc03c0fd4b75d702d93e90f2ac4c0b25ae;p=openwrt-packages.git sed: disable acl If libacl is built, gnu sed finds it during configuration and enables support linking in libacl. This results in build failures due to the missing dependency. Consequently, use CONFIGURE_ARGS to disable acl support. Reported-by: Rosen Penev rosenp@gmail.com Signed-off-by: Russell Senior --- diff --git a/utils/sed/Makefile b/utils/sed/Makefile index 853f4dd68..938728312 100644 --- a/utils/sed/Makefile +++ b/utils/sed/Makefile @@ -46,6 +46,8 @@ define Package/sed/install $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin endef +CONFIGURE_ARGS+= --disable-acl + define Package/sed/postinst #!/bin/sh [ -L "$${IPKG_INSTROOT}/bin/sed" ] && rm -f "$${IPKG_INSTROOT}/bin/sed"