automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-70-gcff45d


From: Ralf Wildenhues
Subject: [SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-70-gcff45d9
Date: Sat, 19 Jan 2008 09:25:28 +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=cff45d952c6b52b190161f8312737e8a3095e60d

The branch, branch-1-10 has been updated
       via  cff45d952c6b52b190161f8312737e8a3095e60d (commit)
      from  0c8b0727bb8b9543ce4d07a47b67cf5cb4f494ae (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 cff45d952c6b52b190161f8312737e8a3095e60d
Author: Akim Demaille <address@hidden>
Date:   Sat Nov 24 15:02:41 2007 +0100

    Skip comments and empty lines in dirlist in the tests.
    
        * defs.in (extra_includes): Skip comments and empty lines in dirlist.
    
    Signed-off-by: Akim Demaille <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog     |    5 +++++
 tests/defs.in |    9 ++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index df3c699..6e81a3c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-01-19  Akim Demaille  <address@hidden>
+
+       Skip comments and empty lines in dirlist in the tests.
+       * defs.in (extra_includes): Skip comments and empty lines in dirlist.
+
 2008-01-19  Ralf Wildenhues  <address@hidden>
 
        * lib/ylwrap: Cope with white space in `PROGRAM' and `pwd`.
diff --git a/tests/defs.in b/tests/defs.in
index b1bb327..af9a003 100644
--- a/tests/defs.in
+++ b/tests/defs.in
@@ -286,11 +286,10 @@ case $required in
     aclocaldir='@prefix@/share/aclocal'
     extra_includes=""
     if test -f $aclocaldir/dirlist; then
-       extra_includes=`(tmp_inc=""
-       while read LINE ; do
-         tmp_inc="$tmp_inc -I $LINE"
-       done
-       echo $tmp_inc) < $aclocaldir/dirlist`
+       extra_includes=`
+       <$aclocaldir/dirlist \
+       sed -ne 's/#.*//;s/[     ][      ]*$//g;s/..*/ -I &/p' |
+        tr -d '\n'`
     else :; fi
 
     libtool_found=no


hooks/post-receive
--
GNU Automake




reply via email to

[Prev in Thread] Current Thread [Next in Thread]