diff options
author | Zheng Bao <fishbaozi@gmail.com> | 2013-12-13 12:30:46 +0800 |
---|---|---|
committer | Zheng Bao <zheng.bao@amd.com> | 2013-12-13 06:09:21 +0100 |
commit | f95bb2d7bb6b38fba4f2c5af702e0b43da0c77ae (patch) | |
tree | 25296ee1141e554354ca99727605bd90dceb2de1 | |
parent | 66e0c4c8c46eec6063a7bb8933990cc5c203ec2e (diff) | |
download | coreboot-f95bb2d7bb6b38fba4f2c5af702e0b43da0c77ae.tar.xz |
crossgcc: Fix a typo.
Change-Id: I8b88957a93e6369c59e9eb17f4ba48954fbc3c02
Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Signed-off-by: Zheng Bao <fishbaozi@gmail.com>
Reviewed-on: http://review.coreboot.org/4526
Tested-by: build bot (Jenkins)
-rwxr-xr-x | util/crossgcc/buildgcc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index c668ad2a36..5d7ac6f49f 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -286,7 +286,7 @@ for PACKAGE in GMP MPFR MPC LIBELF GCC BINUTILS $PYTHON_PACKAGE \ archive="`eval echo '$'$archive`" dir=$PACKAGE"_DIR" dir="`eval echo '$'${dir}`" - test -d ${dir} && test -f ${dir}/.unpack_sucess || ( + test -d ${dir} && test -f ${dir}/.unpack_success || ( printf " * `basename $archive`\n" FLAGS=zxf suffix=`echo $archive | sed 's,.*\.,,'` |