Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-alt r1668 - trunk/toolchain-prefix-wrapper/ld
Date: Wed, 27 Jan 2010 19:46:17
Message-Id: E1NaDqB-00071D-9v@stork.gentoo.org
1 Author: grobian
2 Date: 2010-01-27 19:46:14 +0000 (Wed, 27 Jan 2010)
3 New Revision: 1668
4
5 Modified:
6 trunk/toolchain-prefix-wrapper/ld/gnuplugin.c
7 Log:
8 Remove duplicate optimisation, because it's breaking linking behaviour since the -rpath and -L lists are shared. Bug #302400
9
10 Modified: trunk/toolchain-prefix-wrapper/ld/gnuplugin.c
11 ===================================================================
12 --- trunk/toolchain-prefix-wrapper/ld/gnuplugin.c 2010-01-19 20:33:25 UTC (rev 1667)
13 +++ trunk/toolchain-prefix-wrapper/ld/gnuplugin.c 2010-01-27 19:46:14 UTC (rev 1668)
14 @@ -125,10 +125,6 @@
15 * string matching magic to see if their originally
16 * inserted rpath is available. */
17
18 - /* don't add our Prefix paths if they're already
19 - * there */
20 - StringListRemoveString(data->in->sysLibpath, curr, next - curr);
21 -
22 /* record this path into runpath list */
23 if (StringListAppendConcat(runpathList, curr, next - curr, NULL) < 0)
24 break;