Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9145
-gerrit
commit a453f81d3e2207643215cff5aa5216de37a725be Author: Patrick Georgi patrick@georgi-clan.de Date: Sat Mar 28 15:48:47 2015 +0100
crossgcc: Fix calling outside util/crossgcc
Copy $0 contains the path, and we cd into that early.
Change-Id: If4124d16dea97b5eee4996bdfa3eae3d5d94c5d1 Signed-off-by: Patrick Georgi patrick@georgi-clan.de --- util/crossgcc/buildgcc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index fde8bc6..8bcaf2f 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -614,8 +614,9 @@ printf "Building IASL ${IASL_VERSION} ... " ) 2>&1 | wait_for_build "$IASL_DIR/source/compiler" || exit 1 fi
-rm -f $DESTDIR$TARGETDIR/$0.commit.* -cp $0 $DESTDIR$TARGETDIR/"$0.commit.`git describe`" +PROGNAME=`basename "$0"` +rm -f "$DESTDIR$TARGETDIR/$PROGNAME".commit.* +cp "$PROGNAME" $DESTDIR$TARGETDIR/"$PROGNAME.commit.`git describe`"
if [ $SAVETEMPS -eq 0 ]; then printf "Cleaning up... "