From 9026e6ae699765ec96991c7640c2a28651bcdfb5 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Wed, 19 May 2010 12:53:33 -0700 Subject: net-tools: use bitbake variables rather than shell variables in do_compile Signed-off-by: Chris Larson --- recipes/net-tools/net-tools_1.60.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() { -- cgit 1.2.3-korg