From e3689d6e2f94643b39dd946e6ca5791edba9b9a1 Mon Sep 17 00:00:00 2001 From: E <79379754+oech3@users.noreply.github.com> Date: Tue, 11 Nov 2025 06:27:44 +0900 Subject: [PATCH] GNUmakefile: generalize logic for SELINUX_PROGS for other OS --- GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 0ccd0f68ce3..e277000a274 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -208,8 +208,8 @@ HASHSUM_PROGS := \ $(info Detected OS = $(OS)) -# Don't build the SELinux programs on macOS (Darwin) and FreeBSD -ifeq ($(filter $(OS),Darwin FreeBSD),$(OS)) +# Build the SELinux programs only on Linux +ifeq ($(filter $(OS),Linux),) SELINUX_PROGS := endif