app-emulation/simh: remove unused patches
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>
Sat, 18 Apr 2020 16:52:44 +0000 (18:52 +0200)
committerSergei Trofimovich <slyfox@gentoo.org>
Sat, 18 Apr 2020 21:31:49 +0000 (22:31 +0100)
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>
app-emulation/simh/files/simh-3.9.0-fix-mkdir-race.patch [deleted file]
app-emulation/simh/files/simh-3.9.0-respect-FLAGS.patch [deleted file]

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 (file)
index 3a2aae3..0000000
+++ /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 (file)
index 0f7cd1d..0000000
+++ /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))