When boot strapping from older systems, don't specify a C standard in

the bootstrap process.  This allows one to more completely build from
a -stable box.

Reviewed by: ru@ (briefly)
This commit is contained in:
imp 2003-06-07 18:16:12 +00:00
parent 7c18a9f411
commit 2db9b918f6

View File

@ -202,6 +202,9 @@ BMAKEENV= DESTDIR= \
PATH=${BPATH}:${PATH} \
WORLDTMP=${WORLDTMP} \
MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}"
.if ${BOOTSTRAPPING} < 501100
BMAKEENV+= CSTD=
.endif
BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \
${BMAKEENV} ${MAKE} -f Makefile.inc1 \
BOOTSTRAPPING=${OSRELDATE} \