From c09d759a6497f3c979d1dba3df531833e25e4c47 Mon Sep 17 00:00:00 2001 From: Adam Duskett Date: Fri, 3 Dec 2021 10:01:05 -0800 Subject: [PATCH] package/coreutils: enable selinux support Enable SELinux support if libselinux is selected. This allows utilities such as ls to read and display extended attributes with ls -lZ Signed-off-by: Adam Duskett Signed-off-by: Thomas Petazzoni --- package/coreutils/coreutils.mk | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package/coreutils/coreutils.mk b/package/coreutils/coreutils.mk index a31354ac5a..438b7910eb 100644 --- a/package/coreutils/coreutils.mk +++ b/package/coreutils/coreutils.mk @@ -93,6 +93,13 @@ else COREUTILS_CONF_OPTS += --disable-libcap endif +ifeq ($(BR2_PACKAGE_LIBSELINUX),y) +COREUTILS_DEPENDENCIES += libselinux +COREUTILS_CONF_OPTS += --with-selinux +else +COREUTILS_CONF_OPTS += --without-selinux +endif + ifeq ($(BR2_PACKAGE_OPENSSL),y) COREUTILS_CONF_OPTS += --with-openssl=yes COREUTILS_DEPENDENCIES += openssl