summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2014-07-26 17:10:17 +0200
committerGravatar Martin Szulecki2014-09-19 18:54:02 +0200
commit4da0a2f6f5e9634dd1dd99a8faf3374e8cfc6b1c (patch)
treebbabd6279f00ccc250059e6caa3931e124c46079
parent577538f213cd7132c7450db393fd6fef6bb46b5a (diff)
downloadusbmuxd-4da0a2f6f5e9634dd1dd99a8faf3374e8cfc6b1c.tar.gz
usbmuxd-4da0a2f6f5e9634dd1dd99a8faf3374e8cfc6b1c.tar.bz2
Fix description format for default value in AC_ARG_WITH of preflight argument
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 33f6151..8936bbc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@ AC_CHECK_LIB(pthread, [pthread_create, pthread_mutex_lock], [AC_SUBST(libpthread
23 23
24AC_ARG_WITH([preflight], 24AC_ARG_WITH([preflight],
25 [AS_HELP_STRING([--without-preflight], 25 [AS_HELP_STRING([--without-preflight],
26 [do not build with preflight worker support (default is yes)])], 26 [do not build with preflight worker support @<:@default=yes@:>@])],
27 [with_preflight=no], 27 [with_preflight=no],
28 [with_preflight=yes]) 28 [with_preflight=yes])
29 29