Repository : ssh://git@open-mesh.org/openwrt-feed-batman-adv
On branch : master
commit 110ca7339b01c3349548110e14c9c783a05adab0 Author: Sven Eckelmann sven@narfation.org Date: Wed May 8 09:21:25 2013 +0200
batman-adv-devel: Don't overwrite batctl's CFLAGS
The batctl makefile has CFLAGS which change the behavior of the compiler. This includes important things like the C-dialect used or whether the compiler can ignore aliasing problems during the optimization step.
The OpenWRT build environment should not overwrite these settings without a good reason. Most of these reasons can probably directly be fixed upstream.
Signed-off-by: Sven Eckelmann sven@narfation.org
110ca7339b01c3349548110e14c9c783a05adab0 batman-adv-devel/Makefile | 3 --- 1 file changed, 3 deletions(-)
diff --git a/batman-adv-devel/Makefile b/batman-adv-devel/Makefile index db93ac7..0250701 100644 --- a/batman-adv-devel/Makefile +++ b/batman-adv-devel/Makefile @@ -70,9 +70,6 @@ MAKE_BATCTL_ENV += \ LDFLAGS="$(TARGET_LDFLAGS)"
MAKE_BATCTL_ARGS += \ - CFLAGS="$(TARGET_CFLAGS)" \ - CCFLAGS="$(TARGET_CFLAGS)" \ - OFLAGS="$(TARGET_CFLAGS)" \ REVISION="$(PKG_BATCTL_SHORTREV)" \ CC="$(TARGET_CC)" \ NODEBUG=1 \