From: Gary V. Vaughan Date: Sun, 27 Jan 2013 13:20:30 +0000 (+0700) Subject: syntax-check: fix new SPACE-TAB violations. X-Git-Tag: v2.4.2.418~51 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=51496e032d8c431cdb4d750d1e4928ecb3d816ba;p=thirdparty%2Flibtool.git syntax-check: fix new SPACE-TAB violations. * build-aux/ltmain.in (func_dll_def_p): Replace SPACE-TAB by TAB-SPACE. * m4/libtool.m4 (_LT_DLL_DEF_P): Likewise. Signed-off-by: Gary V. Vaughan --- diff --git a/build-aux/ltmain.in b/build-aux/ltmain.in index f41fdc730..4c56b98bf 100644 --- a/build-aux/ltmain.in +++ b/build-aux/ltmain.in @@ -1323,9 +1323,9 @@ func_dll_def_p () $debug_cmd func_dll_def_p_tmp=`$SED -n \ - -e 's/^[ ]*//' \ + -e 's/^[ ]*//' \ -e '/^\(;.*\)*$/d' \ - -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ + -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ -e q \ "$1"` test DEF = "$func_dll_def_p_tmp" diff --git a/m4/libtool.m4 b/m4/libtool.m4 index 0a6c334b5..3f50b0cc0 100644 --- a/m4/libtool.m4 +++ b/m4/libtool.m4 @@ -3537,9 +3537,9 @@ _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl AC_DEFUN([_LT_DLL_DEF_P], [dnl test DEF = "`$SED -n dnl - -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace + -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments - -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl + -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl -e q dnl Only consider the first "real" line $1`" dnl ])# _LT_DLL_DEF_P