Thu Oct 29 02:36:48 2009 UTC ()
short-circuit yacc. We cannot make %pure-parser


(christos)
diff -r1.7 -r1.8 src/external/gpl2/xcvs/lib/libcvs/Makefile

cvs diff -r1.7 -r1.8 src/external/gpl2/xcvs/lib/libcvs/Makefile (expand / switch to unified diff)

--- src/external/gpl2/xcvs/lib/libcvs/Makefile 2009/10/19 01:24:19 1.7
+++ src/external/gpl2/xcvs/lib/libcvs/Makefile 2009/10/29 02:36:48 1.8
@@ -1,23 +1,25 @@ @@ -1,23 +1,25 @@
1# $NetBSD: Makefile,v 1.7 2009/10/19 01:24:19 christos Exp $ 1# $NetBSD: Makefile,v 1.8 2009/10/29 02:36:48 christos Exp $
2 2
3LIBISPRIVATE= yes 3LIBISPRIVATE= yes
4 4
5.include "${.CURDIR}/../../Makefile.inc" 5.include "${.CURDIR}/../../Makefile.inc"
6 6
7LIB= cvs 7LIB= cvs
8 8
9DIST= ${IDIST}/lib 9DIST= ${IDIST}/lib
10.PATH: ${DIST} 10.PATH: ${DIST}
11CPPFLAGS+=-I${DIST} 11CPPFLAGS+=-I${DIST}
 12.y.c .y.h:
 13 @true
12 14
13SRCS= __fpending.c asnprintf.c basename.c canon-host.c canonicalize.c \ 15SRCS= __fpending.c asnprintf.c basename.c canon-host.c canonicalize.c \
14 chdir-long.c closeout.c cycle-check.c dirname.c dup-safer.c exitfail.c \ 16 chdir-long.c closeout.c cycle-check.c dirname.c dup-safer.c exitfail.c \
15 fd-safer.c getdate.c gettime.c md5.c \ 17 fd-safer.c getdate.c gettime.c md5.c \
16 openat.c pagealign_alloc.c printf-args.c printf-parse.c \ 18 openat.c pagealign_alloc.c printf-args.c printf-parse.c \
17 quotearg.c regex.c rpmatch.c save-cwd.c sighandle.c strftime.c \ 19 quotearg.c regex.c rpmatch.c save-cwd.c sighandle.c strftime.c \
18 stripslash.c vasnprintf.c xalloc-die.c xgetcwd.c xgethostname.c \ 20 stripslash.c vasnprintf.c xalloc-die.c xgetcwd.c xgethostname.c \
19 xmalloc.c xreadlink.c yesno.c 21 xmalloc.c xreadlink.c yesno.c
20 22
21getdate.c: getdate.y 23getdate.c: getdate.y
22 24
23.include <bsd.lib.mk> 25.include <bsd.lib.mk>