[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, master, updated. v1.10b-47-
From: |
Ralf Wildenhues |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, master, updated. v1.10b-47-g3ebd4b8 |
Date: |
Sat, 25 Apr 2009 09:02:19 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Automake".
http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=3ebd4b8c86869f06e7ab1cd5a3d21454c475babd
The branch, master has been updated
via 3ebd4b8c86869f06e7ab1cd5a3d21454c475babd (commit)
from 68ce3ae97c09a3b2885e24a237fb83c7a779b77d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3ebd4b8c86869f06e7ab1cd5a3d21454c475babd
Author: Ralf Wildenhues <address@hidden>
Date: Sat Apr 25 10:48:11 2009 +0200
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 <address@hidden>
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 8 ++++++++
THANKS | 1 +
doc/Makefile.in | 2 +-
lib/Automake/tests/Makefile.in | 2 +-
lib/am/check.am | 2 +-
lib/am/texinfos.am | 2 +-
tests/Makefile.in | 2 +-
7 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index b02b170..83dc740 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2009-04-25 Ralf Wildenhues <address@hidden>
+ 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 ac3255f..2017bcb 100644
--- a/THANKS
+++ b/THANKS
@@ -155,6 +155,7 @@ Joerg-Martin Schwarz address@hidden
Johan Dahlin address@hidden
Johan Danielsson address@hidden
Johannes Nicolai address@hidden
+John Calcote address@hidden
John F Trudeau address@hidden
John Pierce address@hidden
John Ratliff address@hidden
diff --git a/doc/Makefile.in b/doc/Makefile.in
index 8495fd1..189cdfb 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 3556a30..222f751 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 74f0563..6653f7b 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 5dda4ab..8d0eb87 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 b7197aa..03d3874 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 \
hooks/post-receive
--
GNU Automake
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, master, updated. v1.10b-47-g3ebd4b8,
Ralf Wildenhues <=