crossgcc: Change the term color back (trivial)

Change-Id: I6a7852eef32a3440c9d29e45420cb21d2db8c404
Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Signed-off-by: Zheng Bao <fishbaozi@gmail.com>
Reviewed-on: http://review.coreboot.org/1528
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
Zheng Bao 2012-09-20 16:09:51 +08:00 committed by Patrick Georgi
parent a7f374fb68
commit 5b209c0718
1 changed files with 2 additions and 2 deletions

View File

@ -262,7 +262,7 @@ for ARCHIVE in $GMP_ARCHIVE $MPFR_ARCHIVE $MPC_ARCHIVE $LIBELF_ARCHIVE \
wget --no-check-certificate -q $ARCHIVE wget --no-check-certificate -q $ARCHIVE
) )
test -f tarballs/$FILE || \ test -f tarballs/$FILE || \
printf "\n${RED}Failed to download $FILE.${red}\n" printf "\n${RED}Failed to download $FILE.${NC}\n"
test -f tarballs/$FILE || exit 1 test -f tarballs/$FILE || exit 1
printf "\n" printf "\n"
done done
@ -293,7 +293,7 @@ for PACKAGE in GMP MPFR MPC LIBELF GCC BINUTILS $PYTHON_PACKAGE \
test -r $patch || continue test -r $patch || continue
printf " o `basename $patch`\n" printf " o `basename $patch`\n"
$PATCH -s -N -p0 < `echo $patch` || \ $PATCH -s -N -p0 < `echo $patch` || \
printf "\n${RED}Failed $patch.${red}\n" printf "\n${RED}Failed $patch.${NC}\n"
done done
) )
done done