diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-01-02 19:36:39 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-01-02 19:36:39 +0000 |
commit | 6a3be09b045732ec4b51634e4ecced20c5b8df34 (patch) | |
tree | 247cc960c77c2714d022e99e15e828974cf5752d | |
parent | 6f21268047957e6cdb304a77920f0fba1cdb22b6 (diff) | |
download | upstream-6a3be09b045732ec4b51634e4ecced20c5b8df34.tar.gz upstream-6a3be09b045732ec4b51634e4ecced20c5b8df34.tar.bz2 upstream-6a3be09b045732ec4b51634e4ecced20c5b8df34.zip |
fix grub segfaults on hosts where gcc is built with stack smashing protection
SVN-Revision: 5969
-rw-r--r-- | target/linux/x86-2.6/image/grub/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/target/linux/x86-2.6/image/grub/Makefile b/target/linux/x86-2.6/image/grub/Makefile index e30443e18c..365b327622 100644 --- a/target/linux/x86-2.6/image/grub/Makefile +++ b/target/linux/x86-2.6/image/grub/Makefile @@ -43,6 +43,7 @@ ifeq ($(HOST_ARCH),x86_64) --mandir=/usr/man \ --infodir=/usr/info \ $(DISABLE_NLS) \ + --disable-auto-linux-mem-opt \ ) endef else @@ -62,12 +63,20 @@ else --localstatedir=/var \ --mandir=/usr/man \ --infodir=/usr/info \ + $(DISABLE_NLS) \ + --disable-auto-linux-mem-opt \ ) endef endif +# +# ./configure detects whether the host compiler supports +# -fno-stack-protector but only sets STAGE2_CFLAGS accordingly +# define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) + $(MAKE) -C $(PKG_BUILD_DIR) \ + GRUB_CFLAGS="\$$$$(STAGE2_CFLAGS)" \ + STAGE1_CFLAGS="\$$$$(STAGE2_CFLAGS)" endef define Build/InstallDev |