diff options
author | Daniel Engberg <daniel.engberg.lists@pyret.net> | 2020-02-03 13:09:49 +0000 |
---|---|---|
committer | Hans Dedecker <dedeckeh@gmail.com> | 2020-02-18 21:39:14 +0100 |
commit | 4b591c5e6bd1450063bac82fcf3a572c762f456d (patch) | |
tree | e5186734c888cb69dd0ca5b9f957720ec44af527 | |
parent | 82211e5f49c6517a3b83db888e72a0aea67d5211 (diff) | |
download | upstream-4b591c5e6bd1450063bac82fcf3a572c762f456d.tar.gz upstream-4b591c5e6bd1450063bac82fcf3a572c762f456d.tar.bz2 upstream-4b591c5e6bd1450063bac82fcf3a572c762f456d.zip |
tools/sed: Update to 4.8
Update sed to 4.8
Use POSIX threads
Disable i18n and selinux support
Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
-rw-r--r-- | tools/sed/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/sed/Makefile b/tools/sed/Makefile index ddeb6c457f..4218ac2d59 100644 --- a/tools/sed/Makefile +++ b/tools/sed/Makefile @@ -7,11 +7,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=sed -PKG_VERSION:=4.7 +PKG_VERSION:=4.8 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@GNU/$(PKG_NAME) -PKG_HASH:=2885768cd0a29ff8d58a6280a270ff161f6a3deb5690b2be6c49f46d4c67bd6a +PKG_HASH:=f79b0cfea71b37a8eeec8490db6c5f7ae7719c35587f21edb0617f370eeff633 export SED:= HOST_BUILD_PARALLEL:=1 @@ -24,7 +24,9 @@ include $(INCLUDE_DIR)/host-build.mk HOST_CONFIGURE_ARGS += \ --disable-acl \ --disable-nls \ - --enable-threads=pth + --enable-threads=posix \ + --disable-i18n \ + --without-selinux HOST_CONFIGURE_VARS += \ ac_cv_search_setfilecon=no \ |