coreutils: add libcap dependency to selected applets
If libcap happens to be present in the environment, coreutils will pick it up and link some applets against it. Since the idea of coreutils is to provide a full featured alternative to the busybox applets, do not inhibit the optional dependency but explicitely require libcap instead. Fixes the following error spotted on the buildbots: Package coreutils-dir is missing dependencies for the following libraries: libcap.so.2 Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
b85f3d20b7
commit
d548d6bf1f
1 changed files with 4 additions and 4 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=coreutils
|
||||
PKG_VERSION:=8.23
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
||||
PKG_SOURCE_URL:=@GNU/coreutils
|
||||
|
@ -37,11 +37,11 @@ DEPENDS_timeout = +librt
|
|||
DEPENDS_expr = +libgmp
|
||||
DEPENDS_factor = +libgmp
|
||||
DEPENDS_cp = +libacl
|
||||
DEPENDS_dir = +libacl
|
||||
DEPENDS_dir = +libacl +libcap
|
||||
DEPENDS_install = +libacl
|
||||
DEPENDS_ls = +libacl
|
||||
DEPENDS_ls = +libacl +libcap
|
||||
DEPENDS_mv = +libacl
|
||||
DEPENDS_vdir = +libacl
|
||||
DEPENDS_vdir = +libacl +libcap
|
||||
|
||||
define Package/coreutils/Default
|
||||
SECTION:=utils
|
||||
|
|
Loading…
Reference in a new issue