summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-emulation/zsnes-wip/files/zsnes-wip-20061112-parsegendistcc.patch')
-rw-r--r--games-emulation/zsnes-wip/files/zsnes-wip-20061112-parsegendistcc.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/games-emulation/zsnes-wip/files/zsnes-wip-20061112-parsegendistcc.patch b/games-emulation/zsnes-wip/files/zsnes-wip-20061112-parsegendistcc.patch
deleted file mode 100644
index fd2b366..0000000
--- a/games-emulation/zsnes-wip/files/zsnes-wip-20061112-parsegendistcc.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- parsegen.cpp.old 2006-11-15 10:52:36.000000000 +0100
-+++ parsegen.cpp 2006-11-15 10:55:04.000000000 +0100
-@@ -57,7 +57,8 @@
- #else
- static inline string COMPILE_OBJ(string obj, string c)
- {
-- return(string(string("gcc ")+cflags+(" -o ")+obj+string(" -c ")+c));
-+
-+ return(string((getenv("CC") ? string(getenv("CC")) : string("gcc"))+" "+cflags+(" -o ")+obj+string(" -c ")+c));
- }
- #endif