diff --git a/release/picobsd/build/build b/release/picobsd/build/build index 6281b869aedb..4dcf3f154c65 100755 --- a/release/picobsd/build/build +++ b/release/picobsd/build/build @@ -1,13 +1,17 @@ #!/bin/sh - # -# $Id: build,v 1.1.1.1 1998/08/27 17:38:42 abial Exp $ +# $Id: build,v 1.2 1998/09/03 10:40:27 abial 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). SRC=/usr/src + +# Set this until the tools are fixed... +OBJFORMAT=aout; export OBJFORMAT + # Default MFS sizes for different types of the floppy. Again, most people # shouldn't change them unless they know what they are doing. diff --git a/release/picobsd/build/populate b/release/picobsd/build/populate index 45d301b6d86f..b54b7c9f9c7c 100755 --- a/release/picobsd/build/populate +++ b/release/picobsd/build/populate @@ -1,6 +1,6 @@ #!/bin/sh # -# $Id: populate,v 1.1.1.1 1998/08/27 17:38:42 abial Exp $ +# $Id: populate,v 1.2 1998/09/03 10:16:03 abial Exp $ # pwd=`pwd` @@ -45,7 +45,7 @@ fi echo "-> Making and installing crunch1..." cd ../crunch1 -make OBJFORMAT=aout "SRC=${SRC}" && make install 2>&1 >/dev/null +make "SRC=${SRC}" && make install 2>&1 >/dev/null if [ "X$?" != "X0" ] then echo "-> ERROR while building ../${TYPE}/crunch1..."