[oe-commits] Mark Hatle : busybox: fix ip reference in simple.script

git at git.openembedded.org git at git.openembedded.org
Thu Jul 18 20:18:32 UTC 2013


Module: openembedded-core.git
Branch: master
Commit: 222ae6001db286d66462c6334f7f054ca727b7be
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=222ae6001db286d66462c6334f7f054ca727b7be

Author: Mark Hatle <mark.hatle at windriver.com>
Date:   Mon Jul 15 15:10:28 2013 -0500

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 at windriver.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 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 6973985..78ac424 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
 



More information about the Openembedded-commits mailing list