summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2021-02-15 17:53:25 +0100
committerConrad Kostecki <conikost@gentoo.org>2021-02-15 21:09:35 +0100
commitf82a9d0feab8d5452ca9f564853eab195f4c3162 (patch)
tree859107eb19d2094138a0f44b9734fa89853a5a65
parentmedia-tv/mythtv: remove unused file (diff)
downloadgentoo-f82a9d0feab8d5452ca9f564853eab195f4c3162.tar.gz
gentoo-f82a9d0feab8d5452ca9f564853eab195f4c3162.tar.bz2
gentoo-f82a9d0feab8d5452ca9f564853eab195f4c3162.zip
app-text/epstool: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/19477 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
-rw-r--r--app-text/epstool/files/gcc43.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/app-text/epstool/files/gcc43.patch b/app-text/epstool/files/gcc43.patch
deleted file mode 100644
index b50250a9af1a..000000000000
--- a/app-text/epstool/files/gcc43.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/src/epstool.c
-+++ b/src/epstool.c
-@@ -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);