autofs-5.0.7 - fix typo forced-shutdown should be force-shutdown From: Lan Yixun (dlan) This will confuse people when they find what shows with "./configure --help" is different from what is actually used. Edited by: Ian Kent - make description a little more readable. - update configure to include change. Signed-off-by: Lan Yixun (dlan) --- CHANGELOG | 1 + configure | 8 ++++---- configure.in | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index c77be18..5265f6c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -59,6 +59,7 @@ - dont start readmap unless ready. - fix crash due to thread unsafe use of libldap. - fix compile error with heimdal support enabled. +- fix typo forced-shutdown should be force-shutdown. 25/07/2012 autofs-5.0.7 ======================= diff --git a/configure b/configure index 1086eba..b8e74b7 100755 --- a/configure +++ b/configure @@ -741,7 +741,7 @@ with_openldap with_sasl enable_ext_env enable_mount_locking -enable_forced_shutdown +enable_force_shutdown enable_ignore_busy ' ac_precious_vars='build_alias @@ -5637,9 +5637,9 @@ fi # # Enable forced shutdown on USR1 signal (unlink umounts all mounts). # -# Check whether --enable-forced-shutdown was given. -if test "${enable_forced_shutdown+set}" = set; then : - enableval=$enable_forced_shutdown; +# Check whether --enable-force-shutdown was given. +if test "${enable_force_shutdown+set}" = set; then : + enableval=$enable_force_shutdown; else enableval=no fi diff --git a/configure.in b/configure.in index 559045a..0013a39 100644 --- a/configure.in +++ b/configure.in @@ -363,7 +363,7 @@ fi # # Enable forced shutdown on USR1 signal (unlink umounts all mounts). # -AC_ARG_ENABLE(forced-shutdown, +AC_ARG_ENABLE(force-shutdown, [ --enable-force-shutdown enable USR1 signal to force unlink umount of any busy mounts during shutdown],, enableval=no)