From: Baruch Siach Date: Tue, 12 Jun 2018 17:40:50 +0000 (+0300) Subject: f2fs-tools: add selinux and libblk optional dependencies X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e2a92d114b12c7bd28f6061e9066e915b1a7bd56;p=buildroot.git f2fs-tools: add selinux and libblk optional dependencies Signed-off-by: Baruch Siach Signed-off-by: Peter Korsgaard --- 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))