diff options
author | roger <roger@FreeBSD.org> | 1999-08-28 08:04:15 +0000 |
---|---|---|
committer | roger <roger@FreeBSD.org> | 1999-08-28 08:04:15 +0000 |
commit | 4551595b846af254999fab22023d265fa6b2aedc (patch) | |
tree | b165b4637762a6544744a99fab296b3c12d2f921 | |
parent | 6b6009ffecf6ac596045df26ddab1ca807e856d3 (diff) | |
download | FreeBSD-src-4551595b846af254999fab22023d265fa6b2aedc.zip FreeBSD-src-4551595b846af254999fab22023d265fa6b2aedc.tar.gz |
Backout my last commit. Exit status is $?
-rwxr-xr-x | release/picobsd/build/build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/picobsd/build/build b/release/picobsd/build/build index bc9c367..34cb928 100755 --- a/release/picobsd/build/build +++ b/release/picobsd/build/build @@ -93,7 +93,7 @@ main() { echo "" ./stage1 2>&1 | tee stage1.out - if [ "X?" != "X0" ] ; then + if [ "X$?" != "X0" ] ; then echo "" echo "-> ERROR in \"${i}\" script. Aborting the build process." echo -n "-> Cleaning temporary files... " |