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=1c466735d27055866472fd8f0265e05a59ccc5e6

The branch, branch-1-10 has been updated
       via  1c466735d27055866472fd8f0265e05a59ccc5e6 (commit)
      from  6e9a377156cf9a18f2201eea1ec0c407ad219028 (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 1c466735d27055866472fd8f0265e05a59ccc5e6
Author: Ralf Wildenhues <[EMAIL PROTECTED]>
Date:   Mon Jan 7 21:53:38 2008 +0100

    Fix ccnoco.test for uncommon LDFLAGS settings.
    
    * tests/ccnoco.test (Mycomp): Use a tighter match for -c -o,
    to avoid matching for example `LDFLAGS=-Wl,--sort-common'.
    * THANKS: Update.
    Report and analysis by Carsten Lohrke and Mike Frysinger.

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

Summary of changes:
 ChangeLog         |    7 +++++++
 THANKS            |    1 +
 tests/ccnoco.test |    6 +++---
 3 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index b1a1ca2..1c1131f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-01-07  Ralf Wildenhues  <[EMAIL PROTECTED]>
+
+       * tests/ccnoco.test (Mycomp): Use a tighter match for -c -o,
+       to avoid matching for example `LDFLAGS=-Wl,--sort-common'.
+       * THANKS: Update.
+       Report and analysis by Carsten Lohrke and Mike Frysinger.
+
 2008-01-07  Stepan Kasal  <[EMAIL PROTECTED]>
 
        * automake.in (handle_texinfo_helper, handle_lib_objects): Fix
diff --git a/THANKS b/THANKS
index 9fc7f06..1453c3a 100644
--- a/THANKS
+++ b/THANKS
@@ -45,6 +45,7 @@ Brian Gough           [EMAIL PROTECTED]
 Brian Jones            [EMAIL PROTECTED]
 Bruce Korb             [EMAIL PROTECTED]
 Bruno Haible           [EMAIL PROTECTED]
+Carsten Lohrke         [EMAIL PROTECTED]
 Charles Wilson         [EMAIL PROTECTED]
 Chris Provenzano       [EMAIL PROTECTED]
 Christian Cornelssen   [EMAIL PROTECTED]
diff --git a/tests/ccnoco.test b/tests/ccnoco.test
index 8826ff2..316b293 100755
--- a/tests/ccnoco.test
+++ b/tests/ccnoco.test
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2001, 2002  Free Software Foundation, Inc.
+# Copyright (C) 2001, 2002, 2008  Free Software Foundation, Inc.
 #
 # This file is part of GNU Automake.
 #
@@ -61,8 +61,8 @@ END
 cat > Mycomp << 'END'
 #!/bin/sh
 
-case "$@" in
- *-c*-o* | *-o*-c*)
+case " "$* in
+ *\ -c*\ -o* | *\ -o*\ -c*)
     exit 1
     ;;
 esac


hooks/post-receive
--
GNU Automake


Reply via email to