diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2016-01-27 01:33:19 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2016-01-27 01:33:19 +0000 |
commit | 46307c6f50aa27e604086cfcd78d7ee2fc110f4b (patch) | |
tree | fc8b634939df3da03d4dff1ba720f0e859707e47 /lib/libc | |
parent | 5aa5255644b8d653636e4d06bf3a49d9579083ee (diff) | |
download | FreeBSD-src-46307c6f50aa27e604086cfcd78d7ee2fc110f4b.zip FreeBSD-src-46307c6f50aa27e604086cfcd78d7ee2fc110f4b.tar.gz |
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
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/net/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/net/Makefile.inc b/lib/libc/net/Makefile.inc index c6307af..ed1d75f 100644 --- a/lib/libc/net/Makefile.inc +++ b/lib/libc/net/Makefile.inc @@ -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 |