From: Ralf Wildenhues Date: Sat, 25 Apr 2009 08:48:11 +0000 (+0200) Subject: Indent rule commands consistently with a TAB. X-Git-Tag: v1.11~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ebd4b8c86869f06e7ab1cd5a3d21454c475babd;p=thirdparty%2Fautomake.git Indent rule commands consistently with a TAB. * lib/am/check.am ($(TEST_SUITE_LOG)): Consistently use TAB, not spaces, for indentation of commands, even if indentation may not be needed at all. * lib/am/texinfos.am (install-info-am): Likewise. * THANKS: Update. Prompted by report from John Calcote. Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index b02b17062..83dc74084 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,13 @@ 2009-04-25 Ralf Wildenhues + Indent rule commands consistently with a TAB. + * lib/am/check.am ($(TEST_SUITE_LOG)): Consistently use TAB, not + spaces, for indentation of commands, even if indentation may not + be needed at all. + * lib/am/texinfos.am (install-info-am): Likewise. + * THANKS: Update. + Prompted by report from John Calcote. + parallel-tests: fix recheck* targets for non-GNU make. * lib/am/check.am (recheck recheck-html): Override AM_MAKEFLAGS to portably transport the TEST_LOGS settings through the diff --git a/THANKS b/THANKS index ac3255f03..2017bcb10 100644 --- a/THANKS +++ b/THANKS @@ -155,6 +155,7 @@ Joerg-Martin Schwarz jms@jms.prima.ruhr.de Johan Dahlin jdahlin@async.com.br Johan Danielsson joda@pdc.kth.se Johannes Nicolai johannes.nicolai@student.hpi.uni-potsdam.de +John Calcote john.calcote@gmail.com John F Trudeau JohnTrudeau@firsthealth.com John Pierce hawkfan@pyrotechnics.com John Ratliff autoconf@technoplaza.net diff --git a/doc/Makefile.in b/doc/Makefile.in index 8495fd18c..189cdfbbf 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -688,7 +688,7 @@ install-info-am: $(INFO_DEPS) if test -f $$file; then d=.; else d=$(srcdir); fi; \ file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \ for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \ - $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \ + $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \ if test -f $$ifile; then \ echo "$$ifile"; \ else : ; fi; \ diff --git a/lib/Automake/tests/Makefile.in b/lib/Automake/tests/Makefile.in index 3556a30f0..222f75117 100644 --- a/lib/Automake/tests/Makefile.in +++ b/lib/Automake/tests/Makefile.in @@ -339,7 +339,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS) msg="$$msg ($$xpass unexpected $$xpasses). "; \ exit=false;; \ *) \ - echo >&2 "incorrect case"; exit 4;; \ + echo >&2 "incorrect case"; exit 4;; \ esac; \ if test "$$skip" -ne 0; then \ if test "$$skip" -eq 1; then \ diff --git a/lib/am/check.am b/lib/am/check.am index 74f056391..6653f7bd8 100644 --- a/lib/am/check.am +++ b/lib/am/check.am @@ -177,7 +177,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS) msg="$$msg ($$xpass unexpected $$xpasses). "; \ exit=false;; \ *) \ - echo >&2 "incorrect case"; exit 4;; \ + echo >&2 "incorrect case"; exit 4;; \ esac; \ if test "$$skip" -ne 0; then \ if test "$$skip" -eq 1; then \ diff --git a/lib/am/texinfos.am b/lib/am/texinfos.am index 5dda4ab12..8d0eb8729 100644 --- a/lib/am/texinfos.am +++ b/lib/am/texinfos.am @@ -198,7 +198,7 @@ install-info-am: $(INFO_DEPS) ## `foo' becomes `foo.i' too. file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \ for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \ - $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \ + $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \ if test -f $$ifile; then \ echo "$$ifile"; \ else : ; fi; \ diff --git a/tests/Makefile.in b/tests/Makefile.in index b7197aa8c..03d387434 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -1081,7 +1081,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS) msg="$$msg ($$xpass unexpected $$xpasses). "; \ exit=false;; \ *) \ - echo >&2 "incorrect case"; exit 4;; \ + echo >&2 "incorrect case"; exit 4;; \ esac; \ if test "$$skip" -ne 0; then \ if test "$$skip" -eq 1; then \