diff options
author | tron <tron@pkgsrc.org> | 2005-08-07 19:47:23 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2005-08-07 19:47:23 +0000 |
commit | cc5ed057eeb0a4aa396d1466da1e6f35c21d2e73 (patch) | |
tree | 9cc6168cb7448d512b678b142643d057eb04ff66 /devel/cscope | |
parent | f5f86f67413817adf9ba7951e1528dbdbdd0543b (diff) | |
download | pkgsrc-cc5ed057eeb0a4aa396d1466da1e6f35c21d2e73.tar.gz |
Force use of "yacc" instead of "bison" because (at least the current
version of) bison cannot parse the grammar file.
Diffstat (limited to 'devel/cscope')
-rw-r--r-- | devel/cscope/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/devel/cscope/Makefile b/devel/cscope/Makefile index e7944666440..cbb40a375c7 100644 --- a/devel/cscope/Makefile +++ b/devel/cscope/Makefile @@ -1,5 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2005/05/22 20:07:50 jlam Exp $ -# +# $NetBSD: Makefile,v 1.40 2005/08/07 19:47:23 tron Exp $ DISTNAME= cscope-15.4 PKGREVISION= 4 @@ -11,10 +10,10 @@ HOMEPAGE= http://cscope.sourceforge.net/ COMMENT= Interactive C program browser GNU_CONFIGURE= YES -USE_TOOLS+= lex +USE_TOOLS+= yacc lex CONFIGURE_ARGS+= --with-ncurses=${BUILDLINK_PREFIX.ncurses} -CONFIGURE_ARGS+= --with-flex +CONFIGURE_ARGS+= --without-bison --with-flex .include "../../devel/ncurses/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |