diff options
author | Romain Naour <romain.naour@openwide.fr> | 2014-04-06 14:37:34 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-04-08 14:07:57 +0200 |
commit | 045f3f777fe5c1b41166e0dbdb998b0ac13a57db (patch) | |
tree | 48aa33ef0965bd6fc9081354766708215e73459c | |
parent | a5a4b38c6a43d9da46cdd0244b1aae07d7bcce5c (diff) | |
download | buildroot-045f3f777fe5c1b41166e0dbdb998b0ac13a57db.tar.gz buildroot-045f3f777fe5c1b41166e0dbdb998b0ac13a57db.zip |
util-linux: add missing dependency on libcap-ng
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/util-linux/util-linux.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/util-linux/util-linux.mk b/package/util-linux/util-linux.mk index d661447187..f0ae3aea8d 100644 --- a/package/util-linux/util-linux.mk +++ b/package/util-linux/util-linux.mk @@ -40,6 +40,10 @@ UTIL_LINUX_DEPENDENCIES += gettext UTIL_LINUX_MAKE_OPT += LIBS=-lintl endif +ifeq ($(BR2_PACKAGE_LIBCAP_NG),y) +UTIL_LINUX_DEPENDENCIES += libcap-ng +endif + # Used by cramfs utils UTIL_LINUX_DEPENDENCIES += $(if $(BR2_PACKAGE_ZLIB),zlib) |