diff options
Diffstat (limited to 'dev-lisp/sbcl/files/sbcl-1.3.15-gentoo-fix_nopie_for_hardened_toolchain.patch')
-rw-r--r-- | dev-lisp/sbcl/files/sbcl-1.3.15-gentoo-fix_nopie_for_hardened_toolchain.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-lisp/sbcl/files/sbcl-1.3.15-gentoo-fix_nopie_for_hardened_toolchain.patch b/dev-lisp/sbcl/files/sbcl-1.3.15-gentoo-fix_nopie_for_hardened_toolchain.patch deleted file mode 100644 index a3f933097503..000000000000 --- a/dev-lisp/sbcl/files/sbcl-1.3.15-gentoo-fix_nopie_for_hardened_toolchain.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff -U3 -r sbcl-1.3.15.orig/src/runtime/GNUmakefile sbcl-1.3.15/src/runtime/GNUmakefile ---- sbcl-1.3.15.orig/src/runtime/GNUmakefile 2017-02-28 20:51:29.000000000 +0100 -+++ sbcl-1.3.15/src/runtime/GNUmakefile 2017-03-02 18:22:13.959257937 +0100 -@@ -46,13 +46,13 @@ - include Config - - # Disable PIE when possible --ifneq ($(shell $(CC) -dumpspecs 2>/dev/null | grep -e no-pie),) -+ifneq ($(shell $(CC) -dumpspecs 2>/dev/null | grep -e '[^f]no-pie'),) - CFLAGS += -fno-pie - LINKFLAGS += -no-pie - LDFLAGS += -no-pie - __LDFLAGS__ += -no-pie - endif --ifneq ($(shell $(CC) -dumpspecs 2>/dev/null | grep -e nopie),) -+ifneq ($(shell $(CC) -dumpspecs 2>/dev/null | grep -e '[^f]nopie'),) - CFLAGS += -fno-pie - LINKFLAGS += -nopie - LDFLAGS += -nopie |