From e1a49cf374c4fbb19066fe5368faadd2f79821a4 Mon Sep 17 00:00:00 2001 From: Steve Dickson Date: Tue, 27 Jan 2015 12:02:01 -0500 Subject: 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 --- configure.ac | 8 ++++---- 1 file 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 -- cgit