From fac0195502ce01c98d010b57121e643f82b906e3 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Mon, 11 Jul 2011 21:42:10 +0200 Subject: [PATCH] busybox: forcing build with -Os Signed-off-by: Stephan Raue --- packages/sysutils/busybox/build | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/sysutils/busybox/build b/packages/sysutils/busybox/build index a6c36c70e2..79dc1e30ae 100755 --- a/packages/sysutils/busybox/build +++ b/packages/sysutils/busybox/build @@ -29,6 +29,7 @@ else fi # optimize for size + CFLAGS=`echo $CFLAGS | sed -e "s|-Ofast|-Os|"` CFLAGS=`echo $CFLAGS | sed -e "s|-O.|-Os|"` LDFLAGS="$LDFLAGS -fwhole-program"