diff options
author | Baruch Siach <baruch@tkos.co.il> | 2018-06-12 20:40:50 +0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-06-12 22:24:29 +0200 |
commit | e2a92d114b12c7bd28f6061e9066e915b1a7bd56 (patch) | |
tree | 38a20dc85e2abd077cf513b4b97bcb948c1709dc | |
parent | 7e3ff45cf1287c0ef9f890cad06008dad0efaafc (diff) | |
download | buildroot-e2a92d114b12c7bd28f6061e9066e915b1a7bd56.tar.gz buildroot-e2a92d114b12c7bd28f6061e9066e915b1a7bd56.zip |
f2fs-tools: add selinux and libblk optional dependencies
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/f2fs-tools/f2fs-tools.mk | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/f2fs-tools/f2fs-tools.mk b/package/f2fs-tools/f2fs-tools.mk index 333a2cf7d4..1736dc4ead 100644 --- a/package/f2fs-tools/f2fs-tools.mk +++ b/package/f2fs-tools/f2fs-tools.mk @@ -15,4 +15,18 @@ F2FS_TOOLS_INSTALL_STAGING = YES F2FS_TOOLS_LICENSE = GPL-2.0 F2FS_TOOLS_LICENSE_FILES = COPYING +ifeq ($(BR2_PACKAGE_LIBSELINUX),y) +F2FS_TOOLS_CONF_OPTS += --with-selinux +F2FS_TOOLS_DEPENDENCIES += libselinux +else +F2FS_TOOLS_CONF_OPTS += --without-selinux +endif + +ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBBLKID),y) +# util-linux is a dependency already, no need to list it again +F2FS_TOOLS_CONF_OPTS += --with-blkid +else +F2FS_TOOLS_CONF_OPTS += --without-blkid +endif + $(eval $(autotools-package)) |