diff options
author | p-wassi <p.wassi@gmx.at> | 2016-12-08 00:36:08 +0100 |
---|---|---|
committer | Yousong Zhou <yszhou4tech@gmail.com> | 2017-01-18 11:20:27 +0800 |
commit | b85f3d20b71a9d070dcf36f83ce6eed585dfa4cf (patch) | |
tree | 99239e3f535d1aad5c1559f573eee692e6ab6b30 /libs/libcap | |
parent | 12df5439b812ce34f9f716f3e19f603ead296701 (diff) |
libs/libcap: update to 2.25
Update libcap to upstream release 2.25
Since the libattr thing was dropped upstream in [1] it is also removed here.
Then, to overcome an issue in cross-compiling [2], set the Make parameter
according to [3].
Take maintainership of this package.
Signed-off-by: Paul Wassi <p.wassi@gmx.at>
[1]:
http://git.kernel.org/cgit/linux/kernel/git/morgan/libcap.git/commit/?id=85f38a573fc47472ab792e813b6f6b6f0b1df112
[2]:
libcap: progs/Makefile:30 executes the cross-compiled binary on the host
[3]:
libcap: Make.Rules: comment from lines 74-81
Diffstat (limited to 'libs/libcap')
-rw-r--r-- | libs/libcap/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/libcap/Makefile b/libs/libcap/Makefile index 50b31e0c7..cc180a013 100644 --- a/libs/libcap/Makefile +++ b/libs/libcap/Makefile @@ -8,13 +8,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libcap -PKG_VERSION:=2.24 +PKG_VERSION:=2.25 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@KERNEL/linux/libs/security/linux-privs/libcap2 -PKG_MD5SUM:=d43ab9f680435a7fff35b4ace8d45b80 -PKG_MAINTAINER:=Steven Barth <cyrus@openwrt.org> +PKG_MD5SUM:=6666b839e5d46c2ad33fc8aa2ceb5f77 +PKG_MAINTAINER:=Paul Wassi <p.wassi@gmx.at> PKG_INSTALL:=1 @@ -37,7 +37,7 @@ MAKE_FLAGS += \ LDFLAGS="$(TARGET_LDFLAGS) -shared" \ INDENT="| true" \ PAM_CAP="no" \ - LIBATTR="no" \ + RAISE_SETFCAP="no" \ DYNAMIC="yes" \ lib="lib" |