]> code.ossystems Code Review - openembedded-core.git/commitdiff
busybox: fix ip reference in simple.script
authorMark Hatle <mark.hatle@windriver.com>
Mon, 15 Jul 2013 20:10:28 +0000 (15:10 -0500)
committerSaul Wold <sgw@linux.intel.com>
Thu, 18 Jul 2013 14:14:40 +0000 (07:14 -0700)
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>
meta/recipes-core/busybox/files/simple.script

index 69739850d8b4443c46f22d7804d4fcc35d378cbf..78ac4242a885a5a1b2414d8d165967a381e7c85b 100644 (file)
@@ -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