From: Neil Brown Date: Tue, 10 Jul 2007 00:07:25 +0000 (+1000) Subject: configure changed to corrently report the default for --enable-mount X-Git-Tag: nfs-utils-1-1-1~161 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=commitdiff_plain;h=1bcf67703e5606837853666763c739db91f08fee configure changed to corrently report the default for --enable-mount The default for "--enable-mount" was changed to 'yes' sometime ago, but the help message in ./configure wasn't updated to match this. Thanks to Chuck Level for pointing this out. Signed-off-by: Neil Brown --- diff --git a/configure.ac b/configure.ac index 0c4f4f0..337becc 100644 --- a/configure.ac +++ b/configure.ac @@ -123,7 +123,7 @@ AC_ARG_ENABLE(uuid, choose_blkid=default) AC_ARG_ENABLE(mount, [AC_HELP_STRING([--enable-mount], - [Create mount.nfs and don't use the util-linux mount(8) functionality. @<:@default=no@:>@])], + [Create mount.nfs and don't use the util-linux mount(8) functionality. @<:@default=yes@:>@])], enable_mount=$enableval, enable_mount=yes) AM_CONDITIONAL(CONFIG_MOUNT, [test "$enable_mount" = "yes"])