diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2010-10-18 10:57:11 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2010-10-18 10:57:11 +0000 |
commit | 6328e1ebd9cb4ed3736583d8cf2889b9cffebd00 (patch) | |
tree | 411421699f352869b90bfb6f1232ff5ed4074ff1 /games-emulation/nestopia/files | |
parent | Version Bump, sci has taken over maintainership (diff) | |
download | gentoo-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.patch | 4 |
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) |