diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2010-09-30 15:41:38 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2010-09-30 15:41:38 +0000 |
commit | 437a1be49a45dff295745d80db9a12f25513e1b7 (patch) | |
tree | 8d44697648cb1b9b19b2c2e3b199266206742e16 /games-sports/trigger/files | |
parent | Marking adhearsion-0.8.3-r1 ~ppc64 for bug 306909 (diff) | |
download | gentoo-2-437a1be49a45dff295745d80db9a12f25513e1b7.tar.gz gentoo-2-437a1be49a45dff295745d80db9a12f25513e1b7.tar.bz2 gentoo-2-437a1be49a45dff295745d80db9a12f25513e1b7.zip |
Respect LDFLAGS. Bug #339200
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'games-sports/trigger/files')
-rw-r--r-- | games-sports/trigger/files/trigger-0.5.2.1-ldflags.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games-sports/trigger/files/trigger-0.5.2.1-ldflags.patch b/games-sports/trigger/files/trigger-0.5.2.1-ldflags.patch new file mode 100644 index 000000000000..c3b602b5020b --- /dev/null +++ b/games-sports/trigger/files/trigger-0.5.2.1-ldflags.patch @@ -0,0 +1,11 @@ +--- mk/jam/unix.jam.old 2010-09-30 17:33:30.000000000 +0200 ++++ mk/jam/unix.jam 2010-09-30 17:33:48.000000000 +0200 +@@ -41,7 +41,7 @@ + + actions LinkApplication bind NEEDLIBS bind EXTRAOBJECTS + { +- $(LINK) -o $(<) $(>) $(EXTRAOBJECTS) $(NEEDLIBS) $(LFLAGS) ++ $(LINK) $(LDFLAGS) -o $(<) $(>) $(EXTRAOBJECTS) $(NEEDLIBS) $(LFLAGS) + } + + |