From 52df780eb60c878b64c4ddde1c5369f2740d3687 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich <slyfox@gentoo.org> Date: Fri, 22 Jun 2012 12:47:53 +0300 Subject: [PATCH] ./configure: cleanup '--enable-background' option description Before the patch ./configure --help shown: --enable-background Support for background file operations [[yes]] After the patch: --enable-background Support for background file operations [yes] Changed whitespace: converted tabs to spaces. Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org> --- m4.include/mc-background.m4 | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/m4.include/mc-background.m4 b/m4.include/mc-background.m4 index 360b828d1..da3151d28 100644 --- a/m4.include/mc-background.m4 +++ b/m4.include/mc-background.m4 @@ -5,15 +5,15 @@ dnl AC_DEFUN([MC_BACKGROUND], [ AC_ARG_ENABLE([background], - AS_HELP_STRING([--enable-background], [Support for background file operations [[yes]]]), - [ - if test "x$enableval" = xno; then - enable_background=no - else - enable_background=yes - fi - ], - [enable_background=yes]) + AS_HELP_STRING([--enable-background], [Support for background file operations [yes]]), + [ + if test "x$enableval" = xno; then + enable_background=no + else + enable_background=yes + fi + ], + [enable_background=yes]) if test "x$enable_background" = xyes; then AC_DEFINE(ENABLE_BACKGROUND, 1, [Define to enable background file operations])