* 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 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ * 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 <skasal@redhat.com>
* automake.in (handle_texinfo_helper, handle_lib_objects): Fix
Brian Jones cbj@nortel.net
Bruce Korb bkorb@gnu.org
Bruno Haible haible@ilog.fr
+Carsten Lohrke carlo@gentoo.org
Charles Wilson cwilson@ece.gatech.edu
Chris Provenzano proven@io.proven.org
Christian Cornelssen ccorn@cs.tu-berlin.de
#! /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
cat > Mycomp << 'END'
#!/bin/sh
-case "$@" in
- *-c*-o* | *-o*-c*)
+case " "$* in
+ *\ -c*\ -o* | *\ -o*\ -c*)
exit 1
;;
esac