diff options
author | Steve Dickson <steved@redhat.com> | 2015-01-28 08:50:28 -0500 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2015-01-30 09:24:42 -0500 |
commit | b57865a8cf8b44044ca9993c4a954235731d182f (patch) | |
tree | a85431a4c7d8f41390bbf6d480790cbf70630034 | |
parent | 521b5f4cc160b3d49debb94384f0129695e72710 (diff) | |
download | nfs-utils-b57865a8cf8b44044ca9993c4a954235731d182f.tar.gz nfs-utils-b57865a8cf8b44044ca9993c4a954235731d182f.tar.xz nfs-utils-b57865a8cf8b44044ca9993c4a954235731d182f.zip |
configure.ac: More clean up
Added a couple default values to the flag descriptions
Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r-- | configure.ac | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index f27b46e..f667abe 100644 --- a/configure.ac +++ b/configure.ac @@ -147,7 +147,8 @@ AC_ARG_WITH(rpcgen, AC_SUBST(RPCGEN_PATH) AM_CONDITIONAL(CONFIG_RPCGEN, [test "$RPCGEN_PATH" = ""]) AC_ARG_ENABLE(uuid, - [AC_HELP_STRING([--disable-uuid], [Exclude uuid support to avoid buggy libblkid])], + [AC_HELP_STRING([--disable-uuid], + [Exclude uuid support to avoid buggy libblkid. @<:@default=no@:>@])], if test "$enableval" = "yes" ; then choose_blkid=yes; else choose_blkid=no; fi, choose_blkid=default) AC_ARG_ENABLE(mount, @@ -160,7 +161,7 @@ AC_ARG_ENABLE(mount, if test "$enable_mount" = yes; then AC_ARG_ENABLE(libmount-mount, [AC_HELP_STRING([--enable-libmount-mount], - [Link mount.nfs with libmount (EXPERIMENTAL)])], + [Link mount.nfs with libmount @<:@default=no@:>@])], enable_libmount=$enableval, enable_libmount=no) fi |