From 856306b2f97efdb3068280d5ef9917b9f3ce0ebd Mon Sep 17 00:00:00 2001 From: Andrzej Bialecki Date: Fri, 4 Sep 1998 08:08:05 +0000 Subject: [PATCH] Set OBJFORMAT=aout to affect the whole build - for now, it seems that too many tools needed to build the floppies are dependent on a.out... --- release/picobsd/build/build | 6 +++++- release/picobsd/build/populate | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/release/picobsd/build/build b/release/picobsd/build/build index 6281b869aed..4dcf3f154c6 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 45d301b6d86..b54b7c9f9c7 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..."