Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-simulation/lincity-ng/files: lincity-ng-2.0-build.patch
Date: Mon, 30 Jul 2012 08:23:22
Message-Id: 20120730082312.1BCDF2004C@flycatcher.gentoo.org
1 hasufell 12/07/30 08:23:12
2
3 Added: lincity-ng-2.0-build.patch
4 Log:
5 fix bug 428572
6
7 (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 games-simulation/lincity-ng/files/lincity-ng-2.0-build.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/lincity-ng/files/lincity-ng-2.0-build.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/lincity-ng/files/lincity-ng-2.0-build.patch?rev=1.1&content-type=text/plain
14
15 Index: lincity-ng-2.0-build.patch
16 ===================================================================
17 From: Julian Ospald <hasufell@g.o>
18 Date: Mon Jul 30 07:06:54 UTC 2012
19 Subject: build system
20
21 arguments to AR would be overwritten if we export AR
22
23 --- mk/jam/unix.jam
24 +++ mk/jam/unix.jam
25 @@ -45,4 +45,10 @@
26 $(LINK) -o $(<) $(>) $(EXTRAOBJECTS) $(NEEDLIBS) $(LIBS)
27 }
28
29 +# jam Archive action seems to include the arguments which will break our AR export
30 +actions Archive
31 +{
32 + $(AR) ru $(<) $(>)
33 +}
34 +