From: Michael Forney Date: Fri, 27 Aug 2010 02:10:03 +0000 (-0700) Subject: Don't install systemd scripts with --without-systemdsystemunitdir X-Git-Tag: 174~348 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=620343ddd674da8ef79ba55061c4bba83cd2d84b Don't install systemd scripts with --without-systemdsystemunitdir Currently, the scripts get installed to /no/ if that option is specified. Signed-off-by: Martin Pitt --- diff --git a/configure.ac b/configure.ac index 0a18bb67f..31c5b1848 100644 --- a/configure.ac +++ b/configure.ac @@ -66,8 +66,10 @@ AC_SUBST([FIRMWARE_PATH], [$FIRMWARE_PATH]) AC_ARG_WITH([systemdsystemunitdir], AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]), [], [with_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)]) -AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir]) -AM_CONDITIONAL(WITH_SYSTEMD, [test -n "$with_systemdsystemunitdir"]) +if test "x$with_systemdsystemunitdir" != xno; then + AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir]) +fi +AM_CONDITIONAL(WITH_SYSTEMD, [test -n "$with_systemdsystemunitdir" -a "x$with_systemdsystemunitdir" != xno ]) AC_ARG_ENABLE([extras], AS_HELP_STRING([--disable-extras], [disable extras with external dependencies]),