[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. v1.10
From: |
Ralf Wildenhues |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. v1.10.2-44-gcd82d3e |
Date: |
Wed, 01 Apr 2009 18:40:29 +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=cd82d3eeffaedb39a2dc2d032fc035d870eab023
The branch, branch-1-10 has been updated
via cd82d3eeffaedb39a2dc2d032fc035d870eab023 (commit)
from 2021c96f54265ca3380ae2f01bfeaa4c3d2809ea (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 cd82d3eeffaedb39a2dc2d032fc035d870eab023
Author: Ralf Wildenhues <address@hidden>
Date: Wed Apr 1 20:36:22 2009 +0200
Fix testsuite failures due to nonexistent `dirlist' entries.
* tests/defs.in: When parsing `$aclocaldir/dirlist', only add
existing directories D to aclocal `-I D' flags, as aclocal
errors on nonexisting directories.
Report and analysis by Andreas Schwab.
Signed-off-by: Ralf Wildenhues <address@hidden>
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 8 ++++++++
tests/defs.in | 4 ++--
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index df623c7..9a818d2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2009-04-01 Ralf Wildenhues <address@hidden>
+
+ Fix testsuite failures due to nonexistent `dirlist' entries.
+ * tests/defs.in: When parsing `$aclocaldir/dirlist', only add
+ existing directories D to aclocal `-I D' flags, as aclocal
+ errors on nonexisting directories.
+ Report and analysis by Andreas Schwab.
+
2009-03-28 Ralf Wildenhues <address@hidden>
manual: minor cleanups.
diff --git a/tests/defs.in b/tests/defs.in
index 85e95e5..68e84f5 100644
--- a/tests/defs.in
+++ b/tests/defs.in
@@ -297,8 +297,8 @@ case $required in
if test -f $aclocaldir/dirlist; then
extra_includes=`
<$aclocaldir/dirlist \
- sed -ne 's/#.*//;s/[ ][ ]*$//g;s/..*/ -I &/p' |
- tr -d '\n'`
+ sed 's/#.*//;s/[ ][ ]*$//g' \
+ | while read dir; do test ! -d "$dir" || echo "-I $dir"; done`
else :; fi
libtool_found=no
hooks/post-receive
--
GNU Automake
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. v1.10.2-44-gcd82d3e,
Ralf Wildenhues <=