From bec968578d97eabc63ae4a12bdeb2b33f40baec4 Mon Sep 17 00:00:00 2001 From: Amit Gud Date: Thu, 22 Jun 2006 12:51:04 -0400 Subject: [PATCH] Change mount configure option to --enable-mount Change the configure option from --with-mount to --enable-mount. Signed-off-by: Amit Gud Signed-off-by: Steve Dickson --- configure.in | 12 ++++++------ utils/Makefile.am | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/configure.in b/configure.in index 5eb1d79..a136fd7 100644 --- a/configure.in +++ b/configure.in @@ -107,12 +107,12 @@ AC_ARG_ENABLE(rquotad, fi AM_CONDITIONAL(CONFIG_RQUOTAD, [test "$enable_rquotad" = "yes"]) -AC_ARG_WITH(mount, - [AC_HELP_STRING([--without-mount], - [Create mount.nfs and do not use the util-linux mount(8) functionality. By default it doesn't.])], - use_mount=$withval, - use_mount=yes) - AM_CONDITIONAL(CONFIG_NOMOUNT, [test "$use_mount" = "no"]) +AC_ARG_ENABLE(mount, + [AC_HELP_STRING([--enable-mount], + [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"]) # Check whether user wants TCP wrappers support AC_TCP_WRAPPERS diff --git a/utils/Makefile.am b/utils/Makefile.am index 259bec3..9cdb4ea 100644 --- a/utils/Makefile.am +++ b/utils/Makefile.am @@ -14,7 +14,7 @@ if CONFIG_GSS OPTDIRS += gssd endif -if CONFIG_NOMOUNT +if CONFIG_MOUNT OPTDIRS += mount endif -- 2.39.2