automake-commit
[Top][All Lists]
Advanced

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

[Automake-commit] [SCM] GNU Automake branch, ng/master, updated. v1.12.1


From: Stefano Lattarini
Subject: [Automake-commit] [SCM] GNU Automake branch, ng/master, updated. v1.12.1-335-g669aa5b
Date: Sat, 09 Jun 2012 18:51:54 +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=669aa5b316ff9912f9ec9a4da3215714318887f2

The branch, ng/master has been updated
       via  669aa5b316ff9912f9ec9a4da3215714318887f2 (commit)
      from  b207dc15733e1b0bf4a1927204d41351f03f42c2 (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 669aa5b316ff9912f9ec9a4da3215714318887f2
Author: Stefano Lattarini <address@hidden>
Date:   Sat Jun 9 13:12:35 2012 +0200

    [ng] tests: fix unportable find(1) usage
    
    * t/subobj10.sh: The use of find(1) without an explicitly given
    file or directory argument (as in "find -name '*.o'" instead of
    "find . '-name.o'") is mostly a GNU extension, and not portable
    to POSIX find.  Fix it.
    
    Signed-off-by: Stefano Lattarini <address@hidden>

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

Summary of changes:
 t/subobj10.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/t/subobj10.sh b/t/subobj10.sh
index ead6b6f..e1d911a 100755
--- a/t/subobj10.sh
+++ b/t/subobj10.sh
@@ -36,7 +36,7 @@ libbar_a_CCASFLAGS =
 .PHONY: test-objs
 check-local: test-objs
 test-objs:
-       find -name '*.$(OBJEXT)' > o.lst && cat o.lst
+       find . -name '*.$(OBJEXT)' > o.lst && cat o.lst
        test -f src/a.$(OBJEXT)
        test -f b.$(OBJEXT)
        test -f src/libbar_a-c.$(OBJEXT)


hooks/post-receive
-- 
GNU Automake



reply via email to

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