From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1MABhJ-00088X-Ht for garchives@archives.gentoo.org; Fri, 29 May 2009 23:41:13 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42F68E02E6; Fri, 29 May 2009 23:41:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 24DD4E02E6 for ; Fri, 29 May 2009 23:41:12 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id D5C0265DFD for ; Fri, 29 May 2009 23:41:11 +0000 (UTC) Received: from vapier by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1MABhH-0006ST-JA for gentoo-commits@lists.gentoo.org; Fri, 29 May 2009 23:41:11 +0000 From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/automake/files: automake-1.10-ccnoco-ldflags.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: automake-1.10-ccnoco-ldflags.patch X-VCS-Directories: sys-devel/automake/files X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Message-Id: Sender: Mike Frysinger Date: Fri, 29 May 2009 23:41:11 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 479f8004-c41a-4bb1-84c8-1592db8e36ce X-Archives-Hash: 538f91da12d959a6c07d072281e7ede3 vapier 09/05/29 23:41:11 Added: automake-1.10-ccnoco-ldflags.patch Log: Add fix from upstream for ccnoco test failure with custom LDFLAGS #2039= 14 by Carsten Lohrke. (Portage version: 2.2_rc33/cvs/Linux x86_64) Revision Changes Path 1.1 sys-devel/automake/files/automake-1.10-ccnoco-ldflag= s.patch file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/automake= /files/automake-1.10-ccnoco-ldflags.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/automake= /files/automake-1.10-ccnoco-ldflags.patch?rev=3D1.1&content-type=3Dtext/p= lain Index: automake-1.10-ccnoco-ldflags.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D http://bugs.gentoo.org/203914 >From 6e86514729c6dccb6213fdde8d93d7061c8108a5 Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Mon, 7 Jan 2008 21:53:38 +0100 Subject: [PATCH] Fix ccnoco.test for uncommon LDFLAGS settings. * tests/ccnoco.test (Mycomp): Use a tighter match for -c -o, to avoid matching for example `LDFLAGS=3D-Wl,--sort-common'. * THANKS: Update. Report and analysis by Carsten Lohrke and Mike Frysinger. --- ChangeLog | 7 +++++++ THANKS | 1 + tests/ccnoco.test | 6 +++--- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/tests/ccnoco.test b/tests/ccnoco.test index 8b37fe8..ca75922 100755 --- a/tests/ccnoco.test +++ b/tests/ccnoco.test @@ -57,8 +57,8 @@ END cat > Mycomp << 'END' #!/bin/sh =20 -case "$@" in - *-c*-o* | *-o*-c*) +case " "$* in + *\ -c*\ -o* | *\ -o*\ -c*) exit 1 ;; esac --=20 1.6.3