svn commit: r294876 - head/lib/libc/net

Bryan Drewery bdrewery at FreeBSD.org
Wed Jan 27 01:33:20 UTC 2016


Author: bdrewery
Date: Wed Jan 27 01:33:19 2016
New Revision: 294876
URL: https://svnweb.freebsd.org/changeset/base/294876

Log:
  nslexer.c does not depend on nsparser.h.
  
  nslexer.o depends on nsparser.h, which is already added by bsd.lib.mk
  and .depend.
  
  This reverts r237402.
  
  MFC after:	2 weeks
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/lib/libc/net/Makefile.inc

Modified: head/lib/libc/net/Makefile.inc
==============================================================================
--- head/lib/libc/net/Makefile.inc	Wed Jan 27 01:24:14 2016	(r294875)
+++ head/lib/libc/net/Makefile.inc	Wed Jan 27 01:33:19 2016	(r294876)
@@ -36,7 +36,7 @@ LFLAGS+=-P_nsyy
 
 CLEANFILES+=nslexer.c nslexer.c.*
 
-nslexer.c: nslexer.l nsparser.h
+nslexer.c: nslexer.l
 	${LEX} ${LFLAGS} -o${.TARGET}.tmp1 ${.IMPSRC}
 	sed -e '/YY_BUF_SIZE/s/16384/1024/' ${.TARGET}.tmp1 >${.TARGET}.tmp2
 	rm -f ${.TARGET}.tmp1


More information about the svn-src-all mailing list