diff options
author | jlam <jlam@pkgsrc.org> | 2005-07-18 02:33:27 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-07-18 02:33:27 +0000 |
commit | 6f766967b6c89889f47c197ab67067434ac38caa (patch) | |
tree | 4951d161d4f23fe6b066025b49763a623a8ef745 /games | |
parent | 50a54d1a728749daf46648d8daa9ef38926d2015 (diff) | |
download | pkgsrc-6f766967b6c89889f47c197ab67067434ac38caa.tar.gz |
Export a new variable TOOLS_CMDLINE_<TOOL> that holds the full command
line (path and arguments) needed to run the real tool.
Modify TOOLS_<TOOL> to hold only the path to the real tool.
Modify falcons-eye/Makefile and qt3-libs/Makefile.common to use
TOOLS_CMDLINE_YACC instead of TOOLS_YACC to that they'll use "bison -y".
Diffstat (limited to 'games')
-rw-r--r-- | games/falcons-eye/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/falcons-eye/Makefile b/games/falcons-eye/Makefile index 3b32f949b85..05b84170c30 100644 --- a/games/falcons-eye/Makefile +++ b/games/falcons-eye/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2005/06/01 18:02:50 jlam Exp $ +# $NetBSD: Makefile,v 1.27 2005/07/18 02:33:27 jlam Exp $ # DISTNAME= nethack_source_331_jtp_193 @@ -19,7 +19,7 @@ DIST_SUBDIR= ${PKGNAME_NOREV}-20050216-2 WRKSRC= ${WRKDIR} USE_TOOLS+= bison lex -MAKE_ENV+= YACC=${TOOLS_YACC:Q} +MAKE_ENV+= YACC=${TOOLS_CMDLINE_YACC:Q} LIBS.SunOS+= -lm |