Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/20487
Change subject: util/crossgcc: Fix typo ......................................................................
util/crossgcc: Fix typo
buildgcc was copied to $DEST/share/buildgcc-$VERSION-, missing the commit id description.
Change-Id: I83d2074b6466b0d99507845dc714a11ab2c58271 Signed-off-by: Patrick Georgi pgeorgi@google.com --- M util/crossgcc/buildgcc 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/87/20487/1
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index d04fe5f..d009417 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -1147,7 +1147,7 @@ # for reproducibility PROGNAME=$(basename "$0") rm -f "$DESTDIR$TARGETDIR/share/$PROGNAME-*" -cp "$PROGNAME" "$DESTDIR$TARGETDIR/share/$PROGNAME-$CROSSGCC_VERSION-$CROSGCC_COMMIT" +cp "$PROGNAME" "$DESTDIR$TARGETDIR/share/$PROGNAME-$CROSSGCC_VERSION-$CROSSGCC_COMMIT"
cleanup