diff options
author | reed <reed@pkgsrc.org> | 2005-02-17 21:05:08 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2005-02-17 21:05:08 +0000 |
commit | 11481dfd15a530b889ee4284413660f125b722f0 (patch) | |
tree | 547ed77f4cae4e82d7e93b26e89e66b3ac005005 /games/falcons-eye/Makefile | |
parent | a839411efa01ab4784abd4d36305ed316093c3c4 (diff) | |
download | pkgsrc-11481dfd15a530b889ee4284413660f125b722f0.tar.gz |
Add new patch (patch-bk) so YACC and LEX are not forced as yacc and lex.
(Because it could be bison -y and flex.)
The build uses yacc and lex so USE_GNU_TOOLS. (Note that
USE_GNU_TOOLS is broken, so now on NetBSD this will use bison -y instead
of native yacc.)
Also set YACC in MAKE_ENV.
This is partial fix for PR #pkg/29388. (The remaining problem
is that mk/tools.mk assumes that yacc is already installed
so YACC is never set to "bison -y" as needed.)
Diffstat (limited to 'games/falcons-eye/Makefile')
-rw-r--r-- | games/falcons-eye/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/games/falcons-eye/Makefile b/games/falcons-eye/Makefile index 4b8a0895ad4..302de32d817 100644 --- a/games/falcons-eye/Makefile +++ b/games/falcons-eye/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2005/02/16 18:56:22 ben Exp $ +# $NetBSD: Makefile,v 1.20 2005/02/17 21:05:08 reed Exp $ # DISTNAME= nethack_source_331_jtp_193 @@ -19,6 +19,8 @@ DIST_SUBDIR= ${PKGNAME}-20050216-2 WRKSRC= ${WRKDIR} USE_BUILDLINK3= yes +USE_GNU_TOOLS+= lex yacc +MAKE_ENV+= YACC="${YACC}" USE_X11= yes LIBS.SunOS+= -lm |