diff options
author | Phil Sutter <phil.sutter@viprinet.com> | 2011-04-18 17:41:19 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-04-26 10:45:26 +0200 |
commit | ce140f3b1b7c9081e205710dff13f5e43879cd4f (patch) | |
tree | 39f8cb381a54f4240da68765a37399014d5c15c5 /package/busybox/Makefile | |
parent | a1464dd60077f3867adaed70dc33abcfb6f2c978 (diff) |
package/busybox: CFLAGS variable seems to be handled since last minor update
Therefore drop the EXTRA_CFLAGS variable, as that makes gcc complain
because of doubly passed -fhonour-copts parameter.
Diffstat (limited to 'package/busybox/Makefile')
-rw-r--r-- | package/busybox/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/busybox/Makefile b/package/busybox/Makefile index 51cc30ddc..67884cf3e 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -38,7 +38,7 @@ BB_MAKE_FLAGS:= V=1 IPKG_ARCH="${CPU_ARCH}" ARCH="${ARCH}" GCC_HONOUR_COPTS=s \ HOSTCC="${CC_FOR_BUILD}" HOSTCFLAGS="$(CFLAGS_FOR_BUILD)" \ -C ${WRKBUILD} ifneq (${ADK_NATIVE},y) -BB_MAKE_FLAGS+= EXTRA_CFLAGS="${TARGET_CFLAGS}" CROSS_COMPILE="$(TARGET_CROSS)" +BB_MAKE_FLAGS+= CROSS_COMPILE="$(TARGET_CROSS)" endif # XXX: Although this looks like all new symbols are enabled when 'make oldconfig' runs, they're not. |