diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2010-10-04 12:38:22 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2010-10-04 12:38:22 +0000 |
commit | fad4422aa04ddb8a855c9862addf200fe970c136 (patch) | |
tree | 52300e71bf70adfb722b20e9c0203a4bef91ffe6 /games-engines/frotz/files | |
parent | Stable on amd64 wrt bug #339140 (diff) | |
download | gentoo-2-fad4422aa04ddb8a855c9862addf200fe970c136.tar.gz gentoo-2-fad4422aa04ddb8a855c9862addf200fe970c136.tar.bz2 gentoo-2-fad4422aa04ddb8a855c9862addf200fe970c136.zip |
Respect LDFLAGS. Bug #337241
(Portage version: 2.1.9.13/cvs/Linux i686)
Diffstat (limited to 'games-engines/frotz/files')
-rw-r--r-- | games-engines/frotz/files/frotz-2.43-ldflags.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/games-engines/frotz/files/frotz-2.43-ldflags.patch b/games-engines/frotz/files/frotz-2.43-ldflags.patch new file mode 100644 index 000000000000..16a0df362edd --- /dev/null +++ b/games-engines/frotz/files/frotz-2.43-ldflags.patch @@ -0,0 +1,20 @@ +--- Makefile.old 2010-10-04 14:13:37.000000000 +0200 ++++ Makefile 2010-10-04 14:14:06.000000000 +0200 +@@ -162,7 +162,7 @@ + $(NAME): $(NAME)-curses + + $(NAME)-curses: soundcard.h $(COMMON_TARGET) $(CURSES_TARGET) +- $(CC) -o $(BINNAME)$(EXTENSION) $(TARGETS) $(LIB) $(CURSES) \ ++ $(CC) $(LDFLAGS) -o $(BINNAME)$(EXTENSION) $(TARGETS) $(LIB) $(CURSES) \ + $(SOUND_LIB) + + all: $(NAME) d$(NAME) +@@ -170,7 +170,7 @@ + dumb: $(NAME)-dumb + d$(NAME): $(NAME)-dumb + $(NAME)-dumb: $(COMMON_TARGET) $(DUMB_TARGET) +- $(CC) -o d$(BINNAME)$(EXTENSION) $(COMMON_TARGET) \ ++ $(CC) $(LDFLAGS) -o d$(BINNAME)$(EXTENSION) $(COMMON_TARGET) \ + $(DUMB_TARGET) $(LIB) + + .SUFFIXES: |