summarylogtreecommitdiffstats
path: root/gcc43.patch
diff options
context:
space:
mode:
Diffstat (limited to 'gcc43.patch')
-rw-r--r--gcc43.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc43.patch b/gcc43.patch
deleted file mode 100644
index 398ce08c5182..000000000000
--- a/gcc43.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- epstool-3.08.orig/src/epstool.c 2005-06-10 04:41:00.000000000 -0500
-+++ epstool-3.08/src/epstool.c 2009-02-16 20:55:43.186140029 -0600
-@@ -2824,7 +2824,7 @@
- code = -1;
- }
- if ((code==0) && stdout_name && (hChildStdoutWr == -1)) {
-- handle = open(stdout_name, O_WRONLY | O_CREAT);
-+ handle = open(stdout_name, O_WRONLY | O_CREAT, 0644);
- hChildStdoutWr = dup2(handle, 1);
- if (handle != -1)
- close(handle);
-@@ -2832,7 +2832,7 @@
- code = -1;
- }
- if ((code==0) && stderr_name && (hChildStderrWr == -1)) {
-- handle = open(stderr_name, O_WRONLY | O_CREAT);
-+ handle = open(stderr_name, O_WRONLY | O_CREAT, 0644);
- hChildStderrWr = dup2(handle, 2);
- if (handle != -1)
- close(handle);