diff options
author | Ross Burton <ross@openedhand.com> | 2007-01-17 15:55:35 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2007-01-17 15:55:35 +0000 |
commit | b26da611c8e883819f3d13b30190ae27116c4da4 (patch) | |
tree | 714614210211e227e7bcf3096ca252e979702000 | |
parent | 97453a1b8122ae2cd0e86e5fc8551de20f34b541 (diff) | |
download | openembedded-core-b26da611c8e883819f3d13b30190ae27116c4da4.tar.gz openembedded-core-b26da611c8e883819f3d13b30190ae27116c4da4.tar.bz2 openembedded-core-b26da611c8e883819f3d13b30190ae27116c4da4.zip |
Remove bashism
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1157 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rwxr-xr-x | scripts/poky-qemu | 3 | ||||
-rwxr-xr-x | scripts/runqemu | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/scripts/poky-qemu b/scripts/poky-qemu index 8710e05dd6..e3693fe16d 100755 --- a/scripts/poky-qemu +++ b/scripts/poky-qemu @@ -41,5 +41,4 @@ if [ "x$MACHINE" = "x" ]; then fi INTERNAL_SCRIPT=`which poky-qemu-internal` -source $INTERNAL_SCRIPT - +. $INTERNAL_SCRIPT diff --git a/scripts/runqemu b/scripts/runqemu index 7ed080e20a..d3643a626e 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -93,9 +93,8 @@ else fi INTERNAL_SCRIPT=`which poky-qemu-internal` -source $INTERNAL_SCRIPT +. $INTERNAL_SCRIPT if [ -x "$DISTCCD" ]; then killall distccd fi - |