aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>1999-12-12 21:24:07 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>1999-12-12 21:24:07 +0000
commit0dd0e829e5585a00b841bfbac3d07fdd9e1ce13b (patch)
tree8aa54fff22d0200f8d5ef8b7b889b39b13176e42 /Makefile.inc1
parentde8708acc2cdb9c0313c8c7a1cffebf8cdc246bf (diff)
downloadsrc-0dd0e829e5585a00b841bfbac3d07fdd9e1ce13b.tar.gz
src-0dd0e829e5585a00b841bfbac3d07fdd9e1ce13b.zip
o Add gensetdefs to the list of tools.
o Don't set CFLAGS in the bootstrap env. It is very likely to be overridden my any CFLAGS setting in /etc/make.conf. Setting it here is almost useless. So far, it doesn't seem necessary.
Notes
Notes: svn path=/head/; revision=54523
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc18
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 7c126922c0e4..7e52d0b10016 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -124,12 +124,11 @@ BMAKEENV= MAKEOBJDIRPREFIX=${WORLDTMP} \
MACHINE_ARCH=${BUILD_ARCH} \
PATH=${TMPPATH}
BMAKE= ${BMAKEENV} ${MAKE} -f Makefile.inc1 -DNOMAN -DNOINFO \
- -DNO_FORTRAN -DNO_GDB -DNO_OBJC
+ -DNO_FORTRAN -DNO_GDB
CROSSENV= COMPILER_PATH=${WORLDTMP}/usr/libexec:${WORLDTMP}/usr/bin \
LIBRARY_PATH=${WORLDTMP}${SHLIBDIR}:${WORLDTMP}/usr/lib \
OBJFORMAT_PATH=${WORLDTMP}/usr/libexec \
- CFLAGS="-nostdinc ${CFLAGS}" \
PERL5LIB=${WORLDTMP}/usr/libdata/perl/5.00503 \
MAKEOBJDIRPREFIX=${OBJTREE}
@@ -343,8 +342,9 @@ _aout_tools= usr.bin/size usr.bin/strip gnu/usr.bin/as gnu/usr.bin/ld
.endif
tools::
-.for _tool in ${_strfile} ${_aout_tools} gnu/usr.bin/binutils \
- usr.bin/objformat usr.bin/yacc gnu/usr.bin/bison gnu/usr.bin/cc
+.for _tool in ${_strfile} ${_aout_tools} usr.bin/gensetdefs \
+ gnu/usr.bin/binutils usr.bin/objformat usr.bin/yacc gnu/usr.bin/bison \
+ gnu/usr.bin/cc
cd ${.CURDIR}/${_tool}; \
${MAKE} obj; \
${MAKE} depend; \