summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--WHATS_NEW1
-rwxr-xr-xconfigure2
-rw-r--r--configure.in4
3 files changed, 4 insertions, 3 deletions
diff --git a/WHATS_NEW b/WHATS_NEW
index 7ba09e8c..162bcc7a 100644
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
Version 2.02.62 -
====================================
+ Help for configure prints --disable-fsadm.
Use consistently $() instead of ${} for all Makefile variables.
Replace CFLOW_CMD only in make.tmpl and use it as variable elsewhere.
Use $(top_builddir) for inclusion of make.tmpl in Makefiles.
diff --git a/configure b/configure
index 49904325..9c0137a7 100755
--- a/configure
+++ b/configure
@@ -1524,7 +1524,7 @@ Optional Features:
--enable-applib Build application library
--enable-cmdlib Build shared command library
--enable-pkgconfig Install pkgconfig support
- --enable-fsadm Enable fsadm
+ --disable-fsadm Disable fsadm
--enable-dmeventd Enable the device-mapper event daemon
--disable-selinux Disable selinux support
--enable-nls Enable Native Language Support
diff --git a/configure.in b/configure.in
index 9ccde946..a9735901 100644
--- a/configure.in
+++ b/configure.in
@@ -737,8 +737,8 @@ AC_ARG_ENABLE(pkgconfig, [ --enable-pkgconfig Install pkgconfig support]
################################################################################
dnl -- Enable fsadm
AC_MSG_CHECKING(whether to install fsadm)
-AC_ARG_ENABLE(fsadm, [ --enable-fsadm Enable fsadm],
-FSADM=$enableval)
+AC_ARG_ENABLE(fsadm, [AC_HELP_STRING([--disable-fsadm], [Disable fsadm])],
+ FSADM=$enableval)
AC_MSG_RESULT($FSADM)
################################################################################