diff options
author | Richard Purdie <richard@openedhand.com> | 2008-02-04 19:30:14 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-02-04 19:30:14 +0000 |
commit | b9c9360d8013aeb60c73d224a4fcd37ac8896107 (patch) | |
tree | a585db4539f914bbc9b5f1d7aba1855daa53c916 /scripts | |
parent | ca2c506f96b9d5af5d40ee66e3b0508052100630 (diff) | |
download | poky-b9c9360d8013aeb60c73d224a4fcd37ac8896107.tar.gz |
scripts/runqemu: Append to CROSSPATH after creating symlinks
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3668 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/runqemu | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 070d371c62..673490bf23 100755 --- a/scripts/runqemu +++ b/scripts/runqemu | |||
@@ -115,11 +115,11 @@ if [ "$MACHINE" = "qemux86" ]; then | |||
115 | CROSSPATH=$BUILDDIR/tmp/cross/i586-poky-linux/bin | 115 | CROSSPATH=$BUILDDIR/tmp/cross/i586-poky-linux/bin |
116 | fi | 116 | fi |
117 | 117 | ||
118 | CROSSPATH=$BUILDDIR/tmp/staging/$BUILD_SYS/usr/bin:$CROSSPATH:$BUILDDIR/tmp/cross/bin | ||
119 | |||
120 | if [ ! -e $CROSSPATH/cc ]; then | 118 | if [ ! -e $CROSSPATH/cc ]; then |
121 | ln -s $CROSSPATH/gcc $CROSSPATH/cc | 119 | ln -s $CROSSPATH/gcc $CROSSPATH/cc |
122 | fi | 120 | fi |
123 | 121 | ||
122 | CROSSPATH=$BUILDDIR/tmp/staging/$BUILD_SYS/usr/bin:$CROSSPATH:$BUILDDIR/tmp/cross/bin | ||
123 | |||
124 | . $INTERNAL_SCRIPT | 124 | . $INTERNAL_SCRIPT |
125 | 125 | ||