From d56990cc03c0fd4b75d702d93e90f2ac4c0b25ae Mon Sep 17 00:00:00 2001 From: Russell Senior Date: Mon, 9 Mar 2020 17:20:39 -0700 Subject: [PATCH] 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 --- utils/sed/Makefile | 2 ++ 1 file changed, 2 insertions(+) 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"