diff options
author | Ross Burton <ross@openedhand.com> | 2006-12-05 12:09:24 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2006-12-05 12:09:24 +0000 |
commit | f63e7159da13e02336431e01358f8f03fdad447b (patch) | |
tree | 26f455961e90481f0a7ed6f62738e76a78d530a8 /scripts/qemu-ifup | |
parent | 4cf2d71a16081bb27552e69ce483c0762b726b66 (diff) | |
download | poky-f63e7159da13e02336431e01358f8f03fdad447b.tar.gz |
Remove bashism
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1003 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts/qemu-ifup')
-rwxr-xr-x | scripts/qemu-ifup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qemu-ifup b/scripts/qemu-ifup index 8abe35f57b..af081fb4d7 100755 --- a/scripts/qemu-ifup +++ b/scripts/qemu-ifup | |||
@@ -1,7 +1,7 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | IFCONFIG=`which ifconfig` | 3 | IFCONFIG=`which ifconfig` |
4 | if [ "x$IFCONFIG" == "x" ]; then | 4 | if [ "x$IFCONFIG" = "x" ]; then |
5 | # better than nothing... | 5 | # better than nothing... |
6 | IFCONFIG=/sbin/ifconfig | 6 | IFCONFIG=/sbin/ifconfig |
7 | fi | 7 | fi |