diff options
author | jb <jb@FreeBSD.org> | 1998-08-31 20:22:07 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-08-31 20:22:07 +0000 |
commit | 116f00b60270c05ddcc944f0393b6772d0c2d6c2 (patch) | |
tree | 5784460c794d7e5aee3898e3ff4c6590ade58d5b /Makefile.upgrade | |
parent | f731a1a2071b4c412bef9b38287a6796ed82a82b (diff) | |
download | FreeBSD-src-116f00b60270c05ddcc944f0393b6772d0c2d6c2.zip FreeBSD-src-116f00b60270c05ddcc944f0393b6772d0c2d6c2.tar.gz |
Force the upgrade kernel to be aout.
Diffstat (limited to 'Makefile.upgrade')
-rw-r--r-- | Makefile.upgrade | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.upgrade b/Makefile.upgrade index 7a61413..508274a 100644 --- a/Makefile.upgrade +++ b/Makefile.upgrade @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile.upgrade,v 1.1 1998/08/31 01:08:08 jb Exp $ # # This makefile contains rules for preforming upgrades that are outside # the scope of the normal build world process. @@ -147,8 +147,10 @@ ${MAKEOBJDIRPREFIX}/do_aout_kernel : @rm -rf ${.CURDIR}/sys/compile/GENERICupgrade .endif @cd ${.CURDIR}/sys/i386/conf; config GENERICupgrade - @-cd ${.CURDIR}/sys/compile/GENERICupgrade; make depend && make all - @cd ${.CURDIR}/sys/compile/GENERICupgrade; make depend && make all + @-cd ${.CURDIR}/sys/compile/GENERICupgrade; \ + OBJFORMAT=aout make depend && make all + @cd ${.CURDIR}/sys/compile/GENERICupgrade; \ + OBJFORMAT=aout make depend && make all .endif @touch ${MAKEOBJDIRPREFIX}/do_aout_kernel |