From: Chris Larson Date: Wed, 19 May 2010 19:53:33 +0000 (-0700) Subject: net-tools: use bitbake variables rather than shell variables in do_compile X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9026e6ae699765ec96991c7640c2a28651bcdfb5;p=openembedded.git net-tools: use bitbake variables rather than shell variables in do_compile Signed-off-by: Chris Larson --- diff --git a/recipes/net-tools/net-tools_1.60.bb b/recipes/net-tools/net-tools_1.60.bb index a370d83bdf..fcda7472d9 100644 --- a/recipes/net-tools/net-tools_1.60.bb +++ b/recipes/net-tools/net-tools_1.60.bb @@ -83,8 +83,8 @@ do_compile() { unset LDFLAGS oe_runmake - $CC $CFLAGS -o ether-wake ether-wake.c - $CC $CFLAGS -o mii-diag mii-diag.c + ${CC} ${CFLAGS} ${LDFLAGS} -o ether-wake ether-wake.c + ${CC} ${CFLAGS} ${LDFLAGS} -o mii-diag mii-diag.c } do_install() {