diff options
author | peter <peter@FreeBSD.org> | 1999-01-07 06:30:14 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-01-07 06:30:14 +0000 |
commit | 2a1a5fb618985e101946d6f5c648084f49c23a85 (patch) | |
tree | 5f786440f93d0dd9df425962e0d4e1f849321d0a /Makefile.upgrade | |
parent | 57329d7db3d7590fca5380c280f3ec3a9cc65f90 (diff) | |
download | FreeBSD-src-2a1a5fb618985e101946d6f5c648084f49c23a85.zip FreeBSD-src-2a1a5fb618985e101946d6f5c648084f49c23a85.tar.gz |
make aout-to-elf first does an a.out makeworld to bring the current
environment and tools up to date so it can then build an ELF world.
Teach it to cope with the a.out disable.
Diffstat (limited to 'Makefile.upgrade')
-rw-r--r-- | Makefile.upgrade | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.upgrade b/Makefile.upgrade index 4e7b7ff..d9391f2 100644 --- a/Makefile.upgrade +++ b/Makefile.upgrade @@ -1,5 +1,5 @@ # -# $Id: Makefile.upgrade,v 1.6 1998/09/23 01:46:25 jb Exp $ +# $Id: Makefile.upgrade,v 1.7 1998/10/17 05:40:45 peter Exp $ # # This makefile contains rules for preforming upgrades that are outside # the scope of the normal build world process. @@ -67,7 +67,7 @@ ${MAKEOBJDIRPREFIX}/do_aout_buildworld : @echo " Doing an aout buildworld to get an up-to-date set of tools" @echo "--------------------------------------------------------------" @cd ${.CURDIR}; MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/aout \ - OBJFORMAT=aout \ + OBJFORMAT=aout REALLY_WANT_DEPRECIATED_AOUT=yes \ make -f Makefile.inc1 -m ${.CURDIR}/share/mk buildworld @touch ${MAKEOBJDIRPREFIX}/do_aout_buildworld |