svn commit: r236187 - stable/7

Dag-Erling Smorgrav des at FreeBSD.org
Mon May 28 15:34:56 UTC 2012


Author: des
Date: Mon May 28 15:34:55 2012
New Revision: 236187
URL: http://svn.freebsd.org/changeset/base/236187

Log:
  Make yacc a bootstrap tool if building on head, since the new yacc is
  not 100% backward compatible.

Modified:
  stable/7/Makefile.inc1

Modified: stable/7/Makefile.inc1
==============================================================================
--- stable/7/Makefile.inc1	Mon May 28 14:50:13 2012	(r236186)
+++ stable/7/Makefile.inc1	Mon May 28 15:34:55 2012	(r236187)
@@ -888,6 +888,10 @@ _colldef=	usr.bin/colldef
 _gencat=	usr.bin/gencat
 .endif
 
+.if ${BOOTSTRAPPING} >= 1000013
+_yacc=		usr.bin/yacc
+.endif
+
 .if ${BOOTSTRAPPING} < 600016
 _mklocale=	usr.bin/mklocale
 .endif
@@ -922,6 +926,7 @@ bootstrap-tools:
     ${_gencat} \
     usr.bin/lorder \
     usr.bin/makewhatis \
+    ${_yacc} \
     ${_mklocale} \
     usr.bin/rpcgen \
     usr.bin/xinstall \


More information about the svn-src-stable mailing list