diff mbox series

[3/3] f2fs-tools: add selinux and libblk optional dependencies

Message ID dd70bbd13bb871e17949a26fd09cdf720327a0e9.1528825250.git.baruch@tkos.co.il
State Accepted
Commit e2a92d114b12c7bd28f6061e9066e915b1a7bd56
Headers show
Series [1/3] f2fs-tools: update homepage link | expand

Commit Message

Baruch Siach June 12, 2018, 5:40 p.m. UTC
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/f2fs-tools/f2fs-tools.mk | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

Comments

Peter Korsgaard June 12, 2018, 8:24 p.m. UTC | #1
>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed, thanks.
diff mbox series

Patch

diff --git a/package/f2fs-tools/f2fs-tools.mk b/package/f2fs-tools/f2fs-tools.mk
index 333a2cf7d4ef..1736dc4ead00 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))