summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Tupone <tupone@gentoo.org>2010-10-18 10:57:11 +0000
committerAlfredo Tupone <tupone@gentoo.org>2010-10-18 10:57:11 +0000
commit6328e1ebd9cb4ed3736583d8cf2889b9cffebd00 (patch)
tree411421699f352869b90bfb6f1232ff5ed4074ff1 /games-emulation/nestopia/files
parentVersion Bump, sci has taken over maintainership (diff)
downloadgentoo-2-6328e1ebd9cb4ed3736583d8cf2889b9cffebd00.tar.gz
gentoo-2-6328e1ebd9cb4ed3736583d8cf2889b9cffebd00.tar.bz2
gentoo-2-6328e1ebd9cb4ed3736583d8cf2889b9cffebd00.zip
Respect LDFLAGS. Bug #333659
(Portage version: 2.1.9.14/cvs/Linux i686)
Diffstat (limited to 'games-emulation/nestopia/files')
-rw-r--r--games-emulation/nestopia/files/nestopia-1.40-makefile.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/games-emulation/nestopia/files/nestopia-1.40-makefile.patch b/games-emulation/nestopia/files/nestopia-1.40-makefile.patch
index aba885d51e19..467e49445ec4 100644
--- a/games-emulation/nestopia/files/nestopia-1.40-makefile.patch
+++ b/games-emulation/nestopia/files/nestopia-1.40-makefile.patch
@@ -44,7 +44,7 @@
objs/%.o: source/%.cpp
@echo Compiling $<...
- @$(CC) $(CFLAGS) $(CPPFLAGS) $< -o $@
-+ @$(CC) $(CXXFLAGS) $< -o $@
++ $(CC) $(CXXFLAGS) $< -o $@
objs/%.o: source/%.o
@echo Compiling $<...
@@ -63,7 +63,7 @@
$(EXE): $(OBJS)
@echo Linking $@...
- @$(CPP) -g -o $(EXE) $^ $(LIBS)
-+ @$(CXX) -g -o $(EXE) $^ $(LIBS)
++ $(CXX) $(LDFLAGS) -g -o $(EXE) $^ $(LIBS)
clean:
-@rm -f $(OBJS) $(EXE) $(GENNSTCONTROLS)