summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-02-03 16:20:51 +0100
committerDavid Seifert <soap@gentoo.org>2017-02-04 22:20:32 +0100
commit262006d72fd7ec9ad22cef44d9c9d847b1d12092 (patch)
tree603d518e6a65e14506ec738bfad3fa740511b383
parentsys-boot/grub: remove unused patches/file (diff)
downloadgentoo-262006d72fd7ec9ad22cef44d9c9d847b1d12092.tar.gz
gentoo-262006d72fd7ec9ad22cef44d9c9d847b1d12092.tar.bz2
gentoo-262006d72fd7ec9ad22cef44d9c9d847b1d12092.zip
sys-boot/syslinux: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/3791
-rw-r--r--sys-boot/syslinux/files/syslinux-6.02-add-fno-stack-protector.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/sys-boot/syslinux/files/syslinux-6.02-add-fno-stack-protector.patch b/sys-boot/syslinux/files/syslinux-6.02-add-fno-stack-protector.patch
deleted file mode 100644
index b3537678c5d7..000000000000
--- a/sys-boot/syslinux/files/syslinux-6.02-add-fno-stack-protector.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -Naur syslinux-6.02/mk/efi.mk syslinux-6.02-hardened/mk/efi.mk
---- syslinux-6.02/mk/efi.mk 2013-10-13 13:59:03.000000000 -0400
-+++ syslinux-6.02-hardened/mk/efi.mk 2014-02-09 12:56:47.036409135 -0500
-@@ -23,6 +23,7 @@
- EFI_SUBARCH = $(ARCH)
- endif
-
-+GCCOPT := $(call gcc_ok,-fno-stack-protector,)
- EFIINC = $(shell $(topdir)/efi//find-gnu-efi.sh include $(EFI_SUBARCH))
- $(if $(EFIINC),, \
- $(error Missing $(EFI_SUBARCH) gnu-efi header files))
-@@ -42,7 +43,7 @@
- -DELF_DEBUG -DSYSLINUX_EFI -I$(objdir) \
- $(GCCWARN) -D__COM32__ -mno-red-zone \
- -DLDLINUX=\"$(LDLINUX)\" -fvisibility=hidden \
-- -Wno-unused-parameter
-+ -Wno-unused-parameter $(GCCOPT)
-
- # gnuefi sometimes installs these under a gnuefi/ directory, and sometimes not
- CRT0 := $(shell find $(LIBDIR) -name crt0-efi-$(EFI_SUBARCH).o 2>/dev/null | tail -n1)