diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2009-02-10 16:32:33 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2009-02-10 16:32:33 +0000 |
commit | dbef93384b30fcea1cce701a37ccb1999796f40a (patch) | |
tree | 8fefae48a0c1b9d23d153db1a8855f316588a7c6 /games-puzzle | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-dbef93384b30fcea1cce701a37ccb1999796f40a.tar.gz gentoo-2-dbef93384b30fcea1cce701a37ccb1999796f40a.tar.bz2 gentoo-2-dbef93384b30fcea1cce701a37ccb1999796f40a.zip |
Fix --as-needed bug #247448
(Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r8 x86_64)
Diffstat (limited to 'games-puzzle')
-rw-r--r-- | games-puzzle/tong/ChangeLog | 7 | ||||
-rw-r--r-- | games-puzzle/tong/files/1.0-makefile.patch | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/games-puzzle/tong/ChangeLog b/games-puzzle/tong/ChangeLog index 3e514f4c33cc..7a13dbaabc93 100644 --- a/games-puzzle/tong/ChangeLog +++ b/games-puzzle/tong/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-puzzle/tong -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/tong/ChangeLog,v 1.5 2008/02/29 19:29:34 carlo Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/tong/ChangeLog,v 1.6 2009/02/10 16:32:32 tupone Exp $ + + 10 Feb 2009; Alfredo Tupone <tupone@gentoo.org> files/1.0-makefile.patch: + Fix --as-needed bug #247448 by flameeyes@gentoo.org 29 Feb 2008; Carsten Lohrke <carlo@gentoo.org> tong-1.0.ebuild: Remove icon extension from desktop entry to match Icon Theme Specification. diff --git a/games-puzzle/tong/files/1.0-makefile.patch b/games-puzzle/tong/files/1.0-makefile.patch index a2494f0ecb40..4c7fc65fc103 100644 --- a/games-puzzle/tong/files/1.0-makefile.patch +++ b/games-puzzle/tong/files/1.0-makefile.patch @@ -24,7 +24,7 @@ - -tong.o: $(SDL_SOURCES) - $(CC) $(SDL_CFLAGS) -c -o $@ $< -+ $(CXX) $(SDL_LDFLAGS) $(MIXER_FLAGS) $(IMG_FLAGS) $(OBJS) -o $(TARGET) ++ $(CXX) $(LDFLAGS) $(OBJS) $(SDL_LDFLAGS) $(MIXER_FLAGS) $(IMG_FLAGS) -o $(TARGET) # clean out the mess clean: |