summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorJames Youngman <jay@gnu.org>2010-04-02 12:19:46 +0100
committerJames Youngman <jay@gnu.org>2010-04-03 10:07:29 +0100
commit6115892b3346ad6081eb6285cae4889d26886fb8 (patch)
treeb2c4523cf8d65bc5cb889e1bafabec0f93b6ec2a /m4
parentbe821d9d8797dc411870e51f466a80e6f8f2a0e1 (diff)
downloadfindutils-6115892b3346ad6081eb6285cae4889d26886fb8.tar.gz
Fix some space-followed-by-tab sequences.
* NEWS: Change space-tab sequences to just spaces. * build-aux/check-testfiles.sh (main): Likewise * build-aux/src-sniff.py (checkers): Likewise. * find/Makefile.am: Likewise. * find/testsuite/find.posix/sv-bug-25359.exp: Likewise. * import-gnulib.sh (check_merge_driver): Likewise. * m4/withfts.m4 (FIND_WITH_FTS): Likewise. * cfg.mk (false_positives): Explain why we can't enable the sc_space_tab check (xargs .xo test files). Signed-off-by: James Youngman <jay@gnu.org>
Diffstat (limited to 'm4')
-rw-r--r--m4/withfts.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/withfts.m4 b/m4/withfts.m4
index c2260c6e..173ccf17 100644
--- a/m4/withfts.m4
+++ b/m4/withfts.m4
@@ -2,9 +2,9 @@ AC_DEFUN([FIND_WITH_FTS],
[AC_ARG_WITH([fts],
[ --without-fts Use an older mechanism for searching the filesystem, instead of using fts()],[with_fts=$withval],[])
case $with_fts in
- yes|no) ;;
- '') with_fts=yes ;;
- *) AC_MSG_ERROR([Invalid value for --with-fts: $with_fts])
+ yes|no) ;;
+ '') with_fts=yes ;;
+ *) AC_MSG_ERROR([Invalid value for --with-fts: $with_fts])
esac
AM_CONDITIONAL(WITH_FTS, [[test x"${with_fts-no}" != xno]])
if test x"${with_fts-no}" != xno ; then