Skip to content

Commit

Permalink
autoconf: Fix processing of --with-preflight and --with-systemd options
Browse files Browse the repository at this point in the history
  • Loading branch information
nikias committed Sep 18, 2023
1 parent 61b99ab commit 56f013b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ PKG_CHECK_MODULES(limd_glue, libimobiledevice-glue-1.0 >= 1.0.0)
AC_ARG_WITH([preflight],
[AS_HELP_STRING([--without-preflight],
[do not build with preflight worker support @<:@default=yes@:>@])],
[with_preflight=no],
[with_preflight=$withval],
[with_preflight=yes])

if test "x$have_limd" = "xyes"; then
Expand Down Expand Up @@ -75,7 +75,7 @@ fi
AC_ARG_WITH([systemd],
[AS_HELP_STRING([--without-systemd],
[do not build with systemd support @<:@default=yes@:>@])],
[],
[with_systemd=$withval],
[with_systemd=yes])

AC_ARG_WITH([systemdsystemunitdir],
Expand Down

0 comments on commit 56f013b

Please sign in to comment.