diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-02-08 16:02:41 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-02-08 16:02:41 -0800 |
commit | 4f089e2e47f023d51ebba87ecf21c944302115cc (patch) | |
tree | fc014943ef91516b4aed44cc3883d6b639e26f30 /com32/libutil/Makefile | |
parent | 0498d80af5bae472629762bc953c265d96ebf7c9 (diff) | |
download | syslinux-4f089e2e47f023d51ebba87ecf21c944302115cc.tar.gz syslinux-4f089e2e47f023d51ebba87ecf21c944302115cc.tar.xz syslinux-4f089e2e47f023d51ebba87ecf21c944302115cc.zip |
Fix -fno-stack-protector per bug report from Gilles Espinassesyslinux-3.36-pre9
Diffstat (limited to 'com32/libutil/Makefile')
-rw-r--r-- | com32/libutil/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/libutil/Makefile b/com32/libutil/Makefile index 8976ebd8..3656fb3f 100644 --- a/com32/libutil/Makefile +++ b/com32/libutil/Makefile @@ -32,7 +32,7 @@ gcc_ok = $(shell if gcc $(1) -c -x c /dev/null -o /dev/null 2>/dev/null; \ then echo $(1); else echo $(2); fi) -M32 := $(call gcc_ok,-m32,) $(call gcc_ok,-fno_stack_protector,) +M32 := $(call gcc_ok,-m32,) $(call gcc_ok,-fno-stack-protector,) CC = gcc LD = ld -m elf_i386 |