diff options
author | Joshua Lock <josh@linux.intel.com> | 2010-04-28 13:59:36 +0100 |
---|---|---|
committer | Joshua Lock <josh@linux.intel.com> | 2010-04-28 16:47:14 +0100 |
commit | 6458da896fffe33ab5db8cc2606e8225e16b0f36 (patch) | |
tree | 340e8d6ec9c0ed64eb422ab8ffda18815b3ae474 /scripts/runqemu | |
parent | 29813a43b5c50bab571c3b593460c78aab65eac4 (diff) | |
download | openembedded-core-6458da896fffe33ab5db8cc2606e8225e16b0f36.tar.gz openembedded-core-6458da896fffe33ab5db8cc2606e8225e16b0f36.tar.bz2 openembedded-core-6458da896fffe33ab5db8cc2606e8225e16b0f36.tar.xz openembedded-core-6458da896fffe33ab5db8cc2606e8225e16b0f36.zip |
Fix references to CROSS_DIR now that it has been removed
CROSS_DIR is no longer removed so fix up classes, packages and documentation
which refer to it.
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-x | scripts/runqemu | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index ff3c3045a..2ab01d925 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -69,7 +69,7 @@ if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "spitz" -o "$MACHINE" = "borzoi" -o if [ "x$ZIMAGE" = "x" ]; then ZIMAGE=$BUILDDIR/tmp/deploy/images/zImage-$MACHINE.bin fi - CROSSPATH=$BUILDDIR/tmp/cross/arm-poky-linux-gnueabi/bin + CROSSPATH=$BUILDDIR/sysroots/$BUILD_SYS/arm-poky-linux-gnueabi/bin fi function findimage { @@ -137,7 +137,7 @@ if [ "$MACHINE" = "qemux86" ]; then findimage $T qemux86 ext3 "moblin-image-sdk moblin-image-netbook poky-image-sdk poky-image-sato poky-image-minimal" fi fi - CROSSPATH=$BUILDDIR/tmp/cross/i586-poky-linux/bin + CROSSPATH=$BUILDDIR/sysroots/$BUILD_SYS/i586-poky-linux/bin fi if [ ! -e $CROSSPATH/cc ]; then |