From: Alexandros C. Couloumbis Date: Tue, 6 Jul 2010 11:17:41 +0000 (+0000) Subject: package/busybox: fix sed issue with gcc-4.5.0 (closes #7566) X-Git-Tag: reboot~19475 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=1f10f64d62f59d0a72ade8dee424404e93fa5489;p=openwrt%2Fopenwrt.git package/busybox: fix sed issue with gcc-4.5.0 (closes #7566) SVN-Revision: 22074 --- diff --git a/package/busybox/Makefile b/package/busybox/Makefile index aa51b17c8d..128a0dea18 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -60,6 +60,10 @@ ifdef CONFIG_GCC_VERSION_LLVM TARGET_CFLAGS += -fnested-functions endif +ifdef CONFIG_GCC_VERSION_4_5_0 + TARGET_CFLAGS += -fno-tree-pta +endif + define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \