diff options
author | Aurélien Chabot <aurelien@chabot.fr> | 2015-02-26 14:30:50 -0500 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2015-02-26 14:34:00 -0500 |
commit | 578e44bd1778d70f677a3efedb49a072ee3483ec (patch) | |
tree | 01fce422324d19c21dc1e55c42bb0bf3224d0a8c | |
parent | 484be028e408901bc54e76859c17713a2d5a2252 (diff) | |
download | nfs-utils-578e44bd1778d70f677a3efedb49a072ee3483ec.tar.gz nfs-utils-578e44bd1778d70f677a3efedb49a072ee3483ec.tar.xz nfs-utils-578e44bd1778d70f677a3efedb49a072ee3483ec.zip |
configure.ac: Fix systemd autotools activation option
The option to activate the install of systemd service files
was never taken into account.
Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r-- | configure.ac | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 8e427e3..e61430f 100644 --- a/configure.ac +++ b/configure.ac @@ -60,7 +60,6 @@ AC_ARG_WITH(systemd, [AC_HELP_STRING([--with-systemd@<:@=unit-dir-path@:>@], [install systemd unit files @<:@Default: no, and path defaults to /usr/lib/systemd/system if not given@:>@])], test "$withval" = "no" && use_systemd=0 || unitdir=$withval use_systemd=1 - use_systemd=0 ) AM_CONDITIONAL(INSTALL_SYSTEMD, [test "$use_systemd" = 1]) AC_SUBST(unitdir) |