svn commit: r236131 - stable/8
Dag-Erling Smorgrav
des at FreeBSD.org
Sun May 27 00:21:27 UTC 2012
Author: des
Date: Sun May 27 00:21:27 2012
New Revision: 236131
URL: http://svn.freebsd.org/changeset/base/236131
Log:
Make yacc a bootstrap tool if building on head, since the new yacc is
not 100% backward compatible.
Modified:
stable/8/Makefile.inc1
Modified: stable/8/Makefile.inc1
==============================================================================
--- stable/8/Makefile.inc1 Sat May 26 23:58:51 2012 (r236130)
+++ stable/8/Makefile.inc1 Sun May 27 00:21:27 2012 (r236131)
@@ -934,6 +934,10 @@ _ar= usr.bin/ar
_lex= usr.bin/lex
.endif
+.if ${BOOTSTRAPPING} >= 1000013
+_yacc= usr.bin/yacc
+.endif
+
.if ${BOOTSTRAPPING} < 800013
_mklocale= usr.bin/mklocale
.endif
@@ -959,6 +963,7 @@ bootstrap-tools:
${_gperf} \
${_groff} \
${_ar} \
+ ${_yacc} \
${_lex} \
usr.bin/lorder \
usr.bin/makewhatis \
More information about the svn-src-stable-8
mailing list