summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2015-01-27 12:02:01 -0500
committerSteve Dickson <steved@redhat.com>2015-01-27 12:02:01 -0500
commite1a49cf374c4fbb19066fe5368faadd2f79821a4 (patch)
tree68b50e4962c719239f5a06014291319db98e51a0
parent9894b328aaf083532af5af4651903cfc1a7e6935 (diff)
downloadnfs-utils-e1a49cf374c4fbb19066fe5368faadd2f79821a4.tar.gz
nfs-utils-e1a49cf374c4fbb19066fe5368faadd2f79821a4.tar.xz
nfs-utils-e1a49cf374c4fbb19066fe5368faadd2f79821a4.zip
mount.nfs: Set enable_mountconfig during configuration.
Commit ee80d0aa enabled the mount config file but did not set the enable_mountconfig variable. Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index cc30b96..6740fda 100644
--- a/configure.ac
+++ b/configure.ac
@@ -185,10 +185,10 @@ AC_ARG_ENABLE(ipv6,
if test "$enable_mount" = yes; then
AC_ARG_ENABLE(mountconfig,
- [AC_HELP_STRING([--enable-mountconfig],
- [enable mount to use a configuration file @<:@default=yes@:>@])],
- mountconfig=$enableval,
- mountconfig=yes)
+ [AC_HELP_STRING([--disable-mountconfig],
+ [disable mount to use a configuration file @<:@default=no@:>@])],
+ enable_mountconfig=$enableval,
+ enable_mountconfig=yes)
if test "$enable_mountconfig" = no; then
enable_mountconfig=
else