aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/busybox
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2013-07-15 15:10:28 -0500
committerSaul Wold <sgw@linux.intel.com>2013-07-18 07:14:40 -0700
commit222ae6001db286d66462c6334f7f054ca727b7be (patch)
tree2c61602ad2e3484062bb3d6a82697bdb3b365d88 /meta/recipes-core/busybox
parent95f6e9a3d8fa24acc3bab392719e2d92be25d806 (diff)
downloadopenembedded-core-222ae6001db286d66462c6334f7f054ca727b7be.tar.gz
busybox: fix ip reference in simple.script
The ip is being installed into /sbin as of the latest busybox. Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-core/busybox')
-rw-r--r--meta/recipes-core/busybox/files/simple.script2
1 files changed, 1 insertions, 1 deletions
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