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=6e86514729c6dccb6213fdde8d93d7061c8108a5

The branch, master has been updated
       via  6e86514729c6dccb6213fdde8d93d7061c8108a5 (commit)
      from  8371dfd8219d743352a6309fc508ac9a4e083ab7 (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 6e86514729c6dccb6213fdde8d93d7061c8108a5
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 e76a825..f7b3a7e 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 4533fb5..eee4eda 100644
--- a/THANKS
+++ b/THANKS
@@ -46,6 +46,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 8b37fe8..ca75922 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 program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -57,8 +57,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