summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroger <roger@FreeBSD.org>1999-08-27 07:41:25 +0000
committerroger <roger@FreeBSD.org>1999-08-27 07:41:25 +0000
commit74c7494ba177ca5b2765681a9464390b8b0d9b35 (patch)
tree54ccedc307a5ca0ccdecb83e6fb05628a6d951a0
parenta0797ab43e7d1e9c6641c6f2f89994f1f8dda27f (diff)
downloadFreeBSD-src-74c7494ba177ca5b2765681a9464390b8b0d9b35.zip
FreeBSD-src-74c7494ba177ca5b2765681a9464390b8b0d9b35.tar.gz
'build' calls 'stage1'
The check for the exit status of the 'stage1' script was broken. Change "X$?" != "X0" to "X?" != "X0"
-rwxr-xr-xrelease/picobsd/build/build4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/picobsd/build/build b/release/picobsd/build/build
index b2b90fd..5fa727e 100755
--- a/release/picobsd/build/build
+++ b/release/picobsd/build/build
@@ -1,7 +1,7 @@
#!/bin/sh -
#
-# $Id: build,v 1.14 1999/08/22 21:42:30 dwhite Exp $
+# $Id: build,v 1.15 1999/08/23 08:33:07 luigi Exp $
#
# You can set the SRC variable which points to your source tree. It's
# /usr/src by default (most people shouldn't change it).
@@ -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... "
OpenPOWER on IntegriCloud