changeset 39:c12b04caa0c1

Apparently, the exit value of a successful build is 1 because [ $? -ne 0 ] is the last command run. Add an echo.
author Rob Landley <rob@landley.net>
date Tue, 12 Dec 2006 22:01:52 -0500
parents 297bb57cf74c
children 21e058fa3676
files cross-compiler.sh
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/cross-compiler.sh	Tue Dec 12 21:15:50 2006 -0500
+++ b/cross-compiler.sh	Tue Dec 12 22:01:52 2006 -0500
@@ -139,3 +139,5 @@
 tar cjvCf build cross-compiler-"${ARCH}".tar.bz2 cross-compiler-"${ARCH}" &&
 
 [ $? -ne 0 ] && dienow
+
+echo Cross compiler toolchain build complete.