diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-02-18 17:09:21 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-02-18 17:09:21 +0000 |
commit | aca02733e49e7543bce20d256f3eb210b6c39a24 (patch) | |
tree | 7accb2ad14ce1348ebd0bc6846296c32b952c4a6 /sys-freebsd/boot0/files | |
parent | Version bump. (diff) | |
download | historical-aca02733e49e7543bce20d256f3eb210b6c39a24.tar.gz historical-aca02733e49e7543bce20d256f3eb210b6c39a24.tar.bz2 historical-aca02733e49e7543bce20d256f3eb210b6c39a24.zip |
Fix SIGABRT failure when compiled with SSP-enabled gcc, bug #511698, patch by Yuta SATOH
Package-Manager: portage-2.2.17/cvs/Linux x86_64
Manifest-Sign-Key: 0xEFB4464E!
Diffstat (limited to 'sys-freebsd/boot0/files')
-rw-r--r-- | sys-freebsd/boot0/files/boot0-add-nossp-cflags.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sys-freebsd/boot0/files/boot0-add-nossp-cflags.patch b/sys-freebsd/boot0/files/boot0-add-nossp-cflags.patch new file mode 100644 index 000000000000..abc6a57bf4b0 --- /dev/null +++ b/sys-freebsd/boot0/files/boot0-add-nossp-cflags.patch @@ -0,0 +1,11 @@ +https://bugs.gentoo.org/show_bug.cgi?id=511698 + +diff --git a/sys/boot/Makefile.inc b/sys/boot/Makefile.inc +index e0039b9..533dea0 100644 +--- a/sys/boot/Makefile.inc ++++ b/sys/boot/Makefile.inc +@@ -1,3 +1,3 @@ + # $FreeBSD: release/10.0.0/sys/boot/Makefile.inc 188895 2009-02-21 15:04:31Z ru $ + +-SSP_CFLAGS= ++SSP_CFLAGS= -fno-stack-protector |