summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Moritz Schlarb2015-11-15 15:29:14 +0100
committerGravatar Nikias Bassen2016-01-28 19:29:28 +0100
commit35e5d48f29ae03b2b9686109e4ed9ab8b9677ce8 (patch)
treeaa05b28fc2619ed8d5fc2a9d89b1d8df1e1a3db2
parente2f4d0fd3ca51b3809b4982b4e5241ac5c477c5d (diff)
downloadusbmuxd-35e5d48f29ae03b2b9686109e4ed9ab8b9677ce8.tar.gz
usbmuxd-35e5d48f29ae03b2b9686109e4ed9ab8b9677ce8.tar.bz2
Fix --with-systemd argument to configure
Otherwise, specifying ''--with-systemd'' will actually lead to systemd support being disabled. Got that from https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/External-Software.html (last example).
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index d204ba0..5e8fad7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -59,7 +59,7 @@ fi
AC_ARG_WITH([systemd],
[AS_HELP_STRING([--without-systemd],
[do not build with systemd support @<:@default=yes@:>@])],
- [with_systemd=no],
+ [],
[with_systemd=yes])
AC_ARG_WITH([systemdsystemunitdir],