Use AC_HELP_STRING() in the two AC_ARG_WITH() macros that used a
authorWayne Davison <wayned@samba.org>
Sat, 24 Sep 2005 17:17:30 +0000 (17:17 +0000)
committerWayne Davison <wayned@samba.org>
Sat, 24 Sep 2005 17:17:30 +0000 (17:17 +0000)
hard-wired string.

configure.in

index eee9bad..d36cc39 100644 (file)
@@ -86,10 +86,10 @@ then
 fi
 
 AC_ARG_WITH(included-popt,
-        [  --with-included-popt    use bundled popt library, not from system])
+        AC_HELP_STRING([--with-included-popt], [use bundled popt library, not from system]))
 
 AC_ARG_WITH(rsync-path,
-       [  --with-rsync-path=PATH  set default --rsync-path to PATH (default: rsync)],
+       AC_HELP_STRING([--with-rsync-path=PATH], [set default --rsync-path to PATH (default: rsync)]),
        [ RSYNC_PATH="$with_rsync_path" ],
        [ RSYNC_PATH="rsync" ])