From: Mark Hatle Date: Mon, 15 Jul 2013 20:10:28 +0000 (-0500) Subject: busybox: fix ip reference in simple.script X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~36664 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=222ae6001db286d66462c6334f7f054ca727b7be;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git busybox: fix ip reference in simple.script The ip is being installed into /sbin as of the latest busybox. Signed-off-by: Mark Hatle Signed-off-by: Saul Wold --- diff --git a/meta/recipes-core/busybox/files/simple.script b/meta/recipes-core/busybox/files/simple.script index 69739850d8b..78ac4242a88 100644 --- a/meta/recipes-core/busybox/files/simple.script +++ b/meta/recipes-core/busybox/files/simple.script @@ -15,7 +15,7 @@ root_is_nfs() { } have_bin_ip=0 -if [ -x /bin/ip ]; then +if [ -x /sbin/ip ]; then have_bin_ip=1 fi