From 82e88c1e9bdef6cec3a60871cdf8588ba3540b37 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Sun, 7 Jul 2024 06:59:58 +0200 Subject: [PATCH] d/rules: actually enable Linux-only options on Linux The condition was inverted, applying options meant for Linux to non-Linux architectures. Gbp-Dch: Short --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 7d20ba6f..1bed6380 100755 --- a/debian/rules +++ b/debian/rules @@ -24,7 +24,7 @@ DEB_CONFIGURE_EXTRA_FLAGS := \ --without-tcb \ -ifneq ($(DEB_HOST_ARCH_OS),linux) +ifeq ($(DEB_HOST_ARCH_OS),linux) DEB_CONFIGURE_EXTRA_FLAGS += --enable-logind DEB_CONFIGURE_EXTRA_FLAGS += --with-audit endif