Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/GSSAPI/files: 0.26-libs-parse.patch
Date: Fri, 23 Apr 2010 11:20:35
Message-Id: 20100423112029.CFF17317E3@corvid.gentoo.org
1 tove 10/04/23 11:20:29
2
3 Added: 0.26-libs-parse.patch
4 Log:
5 Add patch for misparsed CFLAGS (#276555). Fix LICENSE. Maintenance.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-perl/GSSAPI/files/0.26-libs-parse.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/GSSAPI/files/0.26-libs-parse.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/GSSAPI/files/0.26-libs-parse.patch?rev=1.1&content-type=text/plain
13
14 Index: 0.26-libs-parse.patch
15 ===================================================================
16 --- GSSAPI-0.26/Makefile.PL
17 +++ GSSAPI-0.26/Makefile.PL
18 @@ -267,7 +267,7 @@
19 my ( $confstringstring ) = @_;
20 my (@libs, @others);
21 foreach ( split ' ', $confstringstring ) {
22 - if ( m/(-(Wl,-R|[LlR])[^ ]*)/) {
23 + if ( m/(^-(Wl,-R|[LlR])[^ ]*)/) {
24 push @libs, $1
25 } else {
26 push @others, $_;