diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2013-07-15 15:10:28 -0500 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-07-18 07:14:40 -0700 |
commit | 222ae6001db286d66462c6334f7f054ca727b7be (patch) | |
tree | 2c61602ad2e3484062bb3d6a82697bdb3b365d88 /meta/recipes-core | |
parent | 95f6e9a3d8fa24acc3bab392719e2d92be25d806 (diff) | |
download | openembedded-core-222ae6001db286d66462c6334f7f054ca727b7be.tar.gz openembedded-core-222ae6001db286d66462c6334f7f054ca727b7be.tar.bz2 openembedded-core-222ae6001db286d66462c6334f7f054ca727b7be.zip |
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')
-rw-r--r-- | meta/recipes-core/busybox/files/simple.script | 2 |
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 |