diff options
author | Richard Purdie <richard@openedhand.com> | 2007-11-22 16:57:02 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-11-22 16:57:02 +0000 |
commit | 4d5b401bc69e835708e466500b71e767843aa7c3 (patch) | |
tree | b86ce75143f274d857a3016801703a8efeecb963 | |
parent | 512f7a0ab86c99b9dd8050429edda2e2e469348b (diff) | |
download | openembedded-core-4d5b401bc69e835708e466500b71e767843aa7c3.tar.gz openembedded-core-4d5b401bc69e835708e466500b71e767843aa7c3.tar.bz2 openembedded-core-4d5b401bc69e835708e466500b71e767843aa7c3.zip |
runqemu: Fix path after staging layout changes
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3204 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rwxr-xr-x | scripts/runqemu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 04d86e5187..d3df26c48a 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -23,7 +23,7 @@ if [ "x$BUILDDIR" = "x" ]; then exit 1 fi -PATH=$BUILDDIR/tmp/staging/$BUILD_SYS/bin:$BUILDDIR/tmp/cross/bin:$PATH +PATH=$BUILDDIR/tmp/staging/$BUILD_SYS/usr/bin:$BUILDDIR/tmp/cross/bin:$PATH if [ "x$1" = "x" ]; then echo |