aboutsummaryrefslogtreecommitdiff
path: root/Makefile.upgrade
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1999-01-25 01:47:49 +0000
committerPeter Wemm <peter@FreeBSD.org>1999-01-25 01:47:49 +0000
commit89096bf0ef71c95ea84fd6480862896cd3a03fbb (patch)
treef55a23929ab4c0fea26ab5e188ce086e022fadc5 /Makefile.upgrade
parent7c7545e182af6e59847655355d977dc8ccc1174e (diff)
downloadsrc-89096bf0ef71c95ea84fd6480862896cd3a03fbb.tar.gz
src-89096bf0ef71c95ea84fd6480862896cd3a03fbb.zip
Fix an aout-to-elf upgrade failure. Don't let the kernel Makefile
think it's in ELF mode and upgrading /kernel.
Notes
Notes: svn path=/head/; revision=43168
Diffstat (limited to 'Makefile.upgrade')
-rw-r--r--Makefile.upgrade5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.upgrade b/Makefile.upgrade
index c32b31868602..16002217ec31 100644
--- a/Makefile.upgrade
+++ b/Makefile.upgrade
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.upgrade,v 1.8 1999/01/07 06:30:14 peter Exp $
+# $Id: Makefile.upgrade,v 1.9 1999/01/07 07:20:41 peter Exp $
#
# This makefile contains rules for preforming upgrades that are outside
# the scope of the normal build world process.
@@ -291,7 +291,8 @@ ${MAKEOBJDIRPREFIX}/do_install_kernel_reboot :
@echo "--------------------------------------------------------------"
@echo " Installing a new GENERICupgrade kernel"
@echo "--------------------------------------------------------------"
- @cd ${.CURDIR}/sys/compile/GENERICupgrade; make install
+ @cd ${.CURDIR}/sys/compile/GENERICupgrade; \
+ OBJFORMAT=aout make KERNFORMAT=aout install
@echo
@echo "--------------------------------------------------------------"
@echo " Rebooting......."