diff options
author | jb <jb@FreeBSD.org> | 1998-09-05 08:10:44 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-09-05 08:10:44 +0000 |
commit | 741d27581ba909792e232a7d37f8b0ad0096d74a (patch) | |
tree | aeb53cc6f3ca45071117e911b883379b6557da8e /Makefile.upgrade | |
parent | 53450eb3448e9b9744bb31c0fcecd23b5b4137f1 (diff) | |
download | FreeBSD-src-741d27581ba909792e232a7d37f8b0ad0096d74a.zip FreeBSD-src-741d27581ba909792e232a7d37f8b0ad0096d74a.tar.gz |
Change a hardcoded i386 reference to ${MACHINE} so that MACHINE=pc98
is supported properly.
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 d033cc4..c0374d8 100644 --- a/Makefile.upgrade +++ b/Makefile.upgrade @@ -1,5 +1,5 @@ # -# $Id: Makefile.upgrade,v 1.2 1998/08/31 20:22:07 jb Exp $ +# $Id: Makefile.upgrade,v 1.3 1998/09/03 21:16:15 jb Exp $ # # This makefile contains rules for preforming upgrades that are outside # the scope of the normal build world process. @@ -146,7 +146,7 @@ ${MAKEOBJDIRPREFIX}/do_aout_kernel : .if exists(${.CURDIR}/sys/compile/GENERICupgrade) @rm -rf ${.CURDIR}/sys/compile/GENERICupgrade .endif - @cd ${.CURDIR}/sys/i386/conf; config GENERICupgrade + @cd ${.CURDIR}/sys/${MACHINE}/conf; config GENERICupgrade @-cd ${.CURDIR}/sys/compile/GENERICupgrade; \ OBJFORMAT=aout make depend && make all @cd ${.CURDIR}/sys/compile/GENERICupgrade; \ |