diff options
author | ru <ru@FreeBSD.org> | 2001-09-17 11:50:36 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-09-17 11:50:36 +0000 |
commit | a313983325f1a6ebe60f1669d0582e566204443c (patch) | |
tree | 4a383092197fa2798e805348444b99504e3accf9 | |
parent | 7f444f21ed1472b6b3eb6e7d098d041bce841899 (diff) | |
download | FreeBSD-src-a313983325f1a6ebe60f1669d0582e566204443c.zip FreeBSD-src-a313983325f1a6ebe60f1669d0582e566204443c.tar.gz |
Run the `bootstrap-tools' and `cross-tools' stages with BOOTSTRAPPING
flag defined. This replaces the WORLD flag that got lost in revision
1.96.
-rw-r--r-- | Makefile.inc1 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 5c7fd0c..278159e 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -179,8 +179,8 @@ CROSSENV= MAKEOBJDIRPREFIX=${OBJTREE} \ # bootstrap-tool stage BMAKEENV= ${BOOTSTRAPENV} -BMAKE= ${BMAKEENV} ${MAKE} -f Makefile.inc1 -DNOHTML -DNOINFO \ - -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED +BMAKE= ${BMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING \ + -DNOHTML -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED # build-tool stage TMAKEENV= MAKEOBJDIRPREFIX=${OBJTREE} \ @@ -191,9 +191,9 @@ TMAKE= ${TMAKEENV} ${MAKE} -f Makefile.inc1 # cross-tool stage XMAKEENV= ${BOOTSTRAPENV} \ TARGET_ARCH=${MACHINE_ARCH} -XMAKE= ${XMAKEENV} ${MAKE} -f Makefile.inc1 -DNO_FORTRAN -DNO_GDB \ - -DNOHTML -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE \ - -DNOSHARED +XMAKE= ${XMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING \ + -DNO_FORTRAN -DNO_GDB -DNOHTML -DNOINFO -DNOMAN \ + -DNOPIC -DNOPROFILE -DNOSHARED # world stage WMAKEENV= ${CROSSENV} \ |