summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2019-03-09 22:34:32 +0000
committerJames Le Cuirot <chewi@gentoo.org>2019-03-09 22:34:32 +0000
commit89c0db210e7ecc771db7e4161cccfc9b47f6de6e (patch)
tree2e289c7de8d71c6997b43999a775cc53b5bccc03 /games-roguelike/angband/files
parentgames-roguelike/angband: EAPI bump to 7 (diff)
downloadgentoo-89c0db210e7ecc771db7e4161cccfc9b47f6de6e.tar.gz
gentoo-89c0db210e7ecc771db7e4161cccfc9b47f6de6e.tar.bz2
gentoo-89c0db210e7ecc771db7e4161cccfc9b47f6de6e.zip
games-roguelike/angband: Drop old 4.0.5
Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-roguelike/angband/files')
-rw-r--r--games-roguelike/angband/files/angband-4.0.5-pie-gcc.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/games-roguelike/angband/files/angband-4.0.5-pie-gcc.patch b/games-roguelike/angband/files/angband-4.0.5-pie-gcc.patch
deleted file mode 100644
index b4f3c5707d43..000000000000
--- a/games-roguelike/angband/files/angband-4.0.5-pie-gcc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Allow gcc to construct correct partial linking command to ld.
-Otherwise ld gets an incompatible mix of '-pie -r'.
-
-https://bugs.gentoo.org/617982
-diff --git a/src/Makefile b/src/Makefile
-index 79be4cc..d27bb91 100644
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -33,3 +33,3 @@ win/$(PROGNAME).res: win/$(PROGNAME).rc
- $(PROGNAME).o: $(OBJECTS)
-- $(LD) -nostdlib -Wl,-r -o $@ $(OBJECTS)
-+ $(LD) -nostdlib -r -o $@ $(OBJECTS)
- @printf "%10s %-20s\n" LINK $@