From d64c2b226a794b4abdaddef3b84135865f84836f Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 24 Sep 2005 17:17:30 +0000 Subject: [PATCH] Use AC_HELP_STRING() in the two AC_ARG_WITH() macros that used a hard-wired string. --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index eee9bada..d36cc397 100644 --- a/configure.in +++ b/configure.in @@ -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" ]) -- 2.34.1