diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-05-19 12:53:33 -0700 |
---|---|---|
committer | Chris Larson <chris_larson@mentor.com> | 2010-05-19 12:53:49 -0700 |
commit | 9026e6ae699765ec96991c7640c2a28651bcdfb5 (patch) | |
tree | 957ffb27ec4688099dbdd6ffdc2b70d85caf3bc7 | |
parent | dd80fc5482cf3556b2294646fbc835b2439fcf52 (diff) |
net-tools: use bitbake variables rather than shell variables in do_compile
Signed-off-by: Chris Larson <chris_larson@mentor.com>
-rw-r--r-- | recipes/net-tools/net-tools_1.60.bb | 4 |
1 files 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() { |