From: Mark Hatle Date: Mon, 15 Jul 2013 20:10:28 +0000 (-0500) Subject: busybox: fix ip reference in simple.script X-Git-Tag: 2015-4~5827 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=222ae6001db286d66462c6334f7f054ca727b7be;p=openembedded-core.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 69739850d8..78ac4242a8 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