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...
This commit is contained in:
Andrzej Bialecki 1998-09-04 08:08:05 +00:00
parent e69763a315
commit 856306b2f9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38800
2 changed files with 7 additions and 3 deletions

View File

@ -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.

View File

@ -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..."