diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-02-06 16:33:39 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-02-06 16:33:39 -0800 |
commit | df2e79ce976ff922c46d56183a6a904f9d5b8cf6 (patch) | |
tree | 192c20e0cde3f250d40515b303e1944e30fc1c74 /mbr/Makefile | |
parent | 9b7224f6a3419bba497b2a47a0c27f8f4893a3cc (diff) | |
download | syslinux.git-df2e79ce976ff922c46d56183a6a904f9d5b8cf6.tar.gz syslinux.git-df2e79ce976ff922c46d56183a6a904f9d5b8cf6.tar.xz syslinux.git-df2e79ce976ff922c46d56183a6a904f9d5b8cf6.zip |
Deal with various distributions breaking gcc in weird ways
Diffstat (limited to 'mbr/Makefile')
-rw-r--r-- | mbr/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbr/Makefile b/mbr/Makefile index 75da4484..d61f7f1c 100644 --- a/mbr/Makefile +++ b/mbr/Makefile @@ -17,7 +17,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,-ffreestanding,) +M32 := $(call gcc_ok,-m32,) $(call gcc_ok,-ffreestanding,) $(call gcc_ok,-fno-stack-protector) CC = gcc LD = ld -m elf_i386 |