summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-04-18 18:52:44 +0200
committerSergei Trofimovich <slyfox@gentoo.org>2020-04-18 22:31:49 +0100
commit00356788db89a09a37744913fd5dbb65ffe1bc48 (patch)
tree96ae88036eaf72be443695f4149a3e02c4f1562c /app-emulation/simh/files
parentsci-libs/linux-gpib-modules: GLEP 81 fixes (diff)
downloadgentoo-00356788db89a09a37744913fd5dbb65ffe1bc48.tar.gz
gentoo-00356788db89a09a37744913fd5dbb65ffe1bc48.tar.bz2
gentoo-00356788db89a09a37744913fd5dbb65ffe1bc48.zip
app-emulation/simh: remove unused patches
Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/15394 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'app-emulation/simh/files')
-rw-r--r--app-emulation/simh/files/simh-3.9.0-fix-mkdir-race.patch11
-rw-r--r--app-emulation/simh/files/simh-3.9.0-respect-FLAGS.patch13
2 files changed, 0 insertions, 24 deletions
diff --git a/app-emulation/simh/files/simh-3.9.0-fix-mkdir-race.patch b/app-emulation/simh/files/simh-3.9.0-fix-mkdir-race.patch
deleted file mode 100644
index 3a2aae35207c..000000000000
--- a/app-emulation/simh/files/simh-3.9.0-fix-mkdir-race.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- simh-3.9.0/makefile
-+++ simh-3.9.0/makefile
-@@ -249,7 +249,7 @@
- NETWORK_OPT = $(NETWORK_CCDEFS)
- endif
- ifneq (binexists,$(shell if $(TEST) -e BIN; then echo binexists; fi))
-- MKDIRBIN = if $(TEST) ! -e BIN; then mkdir BIN; fi
-+ MKDIRBIN = mkdir -p BIN
- endif
- else
- #Win32 Environments (via MinGW32)
diff --git a/app-emulation/simh/files/simh-3.9.0-respect-FLAGS.patch b/app-emulation/simh/files/simh-3.9.0-respect-FLAGS.patch
deleted file mode 100644
index 0f7cd1d114ea..000000000000
--- a/app-emulation/simh/files/simh-3.9.0-respect-FLAGS.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- simh-3.9.0/makefile
-+++ simh-3.9.0/makefile
-@@ -300,8 +300,8 @@
- CFLAGS_O = -O0
- BUILD_FEATURES = - debugging support
- else
-- CFLAGS_O = -O2
-- LDFLAGS_O =
-+ CFLAGS_O ?= -O2
-+ LDFLAGS_O ?=
- GCC_MAJOR_VERSION = $(firstword $(subst ., ,$(GCC_VERSION)))
- ifneq (3,$(GCC_MAJOR_VERSION))
- ifeq (,$(GCC_OPTIMIZERS_CMD))