diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2009-01-06 12:35:15 -0500 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2009-01-06 12:35:15 -0500 |
commit | 8b4b71895e95e55e9fa924c2cc159311eb329ee5 (patch) | |
tree | 6583d189920a944d17a4fbd4eaf051d16fd037a8 | |
parent | 18e84356811587a9cc405c4c6e18ca5573940e35 (diff) | |
download | nfs-utils-8b4b71895e95e55e9fa924c2cc159311eb329ee5.tar.gz nfs-utils-8b4b71895e95e55e9fa924c2cc159311eb329ee5.tar.xz nfs-utils-8b4b71895e95e55e9fa924c2cc159311eb329ee5.zip |
configure: use "--disable-uuid" instead of "--without-uuid"
Reported by Kevin Coffman and Jonathan Andrews. Apparently --without-uuid
doesn't work with some older versions of autoconf, so correct the help text
to document the option that actually does the trick.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 48061e4..7140f48 100644 --- a/configure.ac +++ b/configure.ac @@ -109,7 +109,7 @@ AC_ARG_WITH(rpcgen, AC_SUBST(RPCGEN_PATH) AM_CONDITIONAL(CONFIG_RPCGEN, [test "$RPCGEN_PATH" == ""]) AC_ARG_ENABLE(uuid, - [AC_HELP_STRING([--without-uuid], [Exclude uuid support and so avoid possibly buggy libblkid])], + [AC_HELP_STRING([--disable-uuid], [Exclude uuid support to avoid buggy libblkid])], if test "$enableval" = "yes" ; then choose_blkid=yes; else choose_blkid=no; fi, choose_blkid=default) AC_ARG_ENABLE(mount, |