svn commit: r296888 - stable/8

Ian Lepore ian at FreeBSD.org
Tue Mar 15 04:03:16 UTC 2016


Author: ian
Date: Tue Mar 15 04:03:15 2016
New Revision: 296888
URL: https://svnweb.freebsd.org/changeset/base/296888

Log:
  When building on a newer host, boostrap using lex from the stable-8 source
  to match the yacc being used from that source.  This avoids a build error
  caused by the newer lex emitting a yylex() decl that's already in the source.
  
  This is a direct commit to stable-8; there is no corresponding change in
  later branches to MFC from.  For the record, the new lex came in at version
  1000032, but slipping it into the 1000013 block makes more sense than
  creating a whole new .if block for it.

Modified:
  stable/8/Makefile.inc1

Modified: stable/8/Makefile.inc1
==============================================================================
--- stable/8/Makefile.inc1	Tue Mar 15 03:20:24 2016	(r296887)
+++ stable/8/Makefile.inc1	Tue Mar 15 04:03:15 2016	(r296888)
@@ -953,6 +953,7 @@ _lex=		usr.bin/lex
 .endif
 
 .if ${BOOTSTRAPPING} >= 1000013
+_lex=		usr.bin/lex
 _yacc=		lib/liby \
 		usr.bin/yacc
 .endif


More information about the svn-src-all mailing list