svn commit: r278975 - head
Jung-uk Kim
jkim at FreeBSD.org
Wed Feb 18 23:10:16 UTC 2015
Author: jkim
Date: Wed Feb 18 23:10:15 2015
New Revision: 278975
URL: https://svnweb.freebsd.org/changeset/base/278975
Log:
Fix bootstrap on systems with old yacc with small MAXTABLE.
Modified:
head/Makefile.inc1
Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1 Wed Feb 18 23:08:13 2015 (r278974)
+++ head/Makefile.inc1 Wed Feb 18 23:10:15 2015 (r278975)
@@ -1247,11 +1247,6 @@ _m4= lib/libohash \
usr.bin/m4
.endif
-.if ${BOOTSTRAPPING} < 1000013
-_yacc= lib/liby \
- usr.bin/yacc
-.endif
-
.if ${BOOTSTRAPPING} < 1000014
_crunch= usr.sbin/crunch
.endif
@@ -1273,6 +1268,11 @@ _lex= usr.bin/lex
_awk= usr.bin/awk
.endif
+.if ${BOOTSTRAPPING} < 1001506
+_yacc= lib/liby \
+ usr.bin/yacc
+.endif
+
.if ${MK_BSNMP} != "no"
_gensnmptree= usr.sbin/bsnmpd/gensnmptree
.endif
More information about the svn-src-all
mailing list