From d60bfa7ed7accc58437b44c506e7c46425a38c8e Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Tue, 28 Apr 2026 17:03:19 +0100 Subject: [PATCH] ITS#10495 configure: fix systemdsystemunitdir config variable --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 85a590dbbf..6da10e67d4 100644 --- a/configure.ac +++ b/configure.ac @@ -2057,7 +2057,6 @@ dnl ---------------------------------------------------------------- dnl dnl Check for systemd (only if we have a server) dnl -systemdsystemunitdir= if test $ol_enable_slapd = no && test $ol_enable_balancer != yes ; then if test $ol_with_systemd != no ; then AC_MSG_WARN([servers disabled, ignoring --with-systemd=$ol_with_systemd argument]) @@ -2082,6 +2081,8 @@ if test $ol_with_systemd = yes ; then systemdsystemunitdir=/lib/systemd/system fi fi +else + systemdsystemunitdir= fi AC_SUBST(systemdsystemunitdir)