]> git.ozlabs.org Git - ppp.git/commitdiff
Update configure.ac to use AS_IF() and correct use of paranthesis
authorEivind Næss <eivnaes@yahoo.com>
Tue, 10 Aug 2021 13:50:18 +0000 (06:50 -0700)
committerEivind Næss <eivnaes@yahoo.com>
Fri, 15 Jul 2022 22:25:39 +0000 (15:25 -0700)
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
configure.ac

index 24b3e123ba9493a3ce82bbff280cad60365912a0..ae69aa7f45d0de93f2e5d6b74e2bf8a1d57afb60 100644 (file)
@@ -105,10 +105,8 @@ AC_ARG_ENABLE([systemd],
 AM_CONDITIONAL(WITH_SYSTEMD, test "x${enable_systemd}" = "xyes")
 AM_COND_IF([WITH_SYSTEMD],
     AC_DEFINE([SYSTEMD], 1, [Enable support for systemd notifications]))
-
-if test "x${enable_systemd}" = "xyes"; then
-       PKG_CHECK_MODULES([systemd], [systemd])
-fi
+AS_IF([test "x${enable_systemd}" = "xyes"], [
+       PKG_CHECK_MODULES([systemd], [systemd])])
 
 #
 # Enable Callback Protocol Support, disabled by default