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 | 0e58b7f471c445128659adb0d6d5a0c9e84ccc3e (patch) | |
tree | 4951d161d4f23fe6b066025b49763a623a8ef745 /x11 | |
parent | e6c01c3b6553c30728542be500dd9d67fdcae40d (diff) | |
download | pkgsrc-0e58b7f471c445128659adb0d6d5a0c9e84ccc3e.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 'x11')
-rw-r--r-- | x11/qt3-libs/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/qt3-libs/Makefile.common b/x11/qt3-libs/Makefile.common index cda0f840120..4227261a2a9 100644 --- a/x11/qt3-libs/Makefile.common +++ b/x11/qt3-libs/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.54 2005/07/01 01:10:06 reed Exp $ +# $NetBSD: Makefile.common,v 1.55 2005/07/18 02:33:27 jlam Exp $ # DISTNAME= qt-x11-free-${QTVERSION} CATEGORIES= x11 @@ -112,7 +112,7 @@ pre-configure: -e 's:@CXXFLAGS@:${CXXFLAGS}:g' \ -e 's:@SYS_LIBS@:${SYS_LIBS}:g' \ -e 's:@LEX@:${LEX}:g' \ - -e 's:@YACC@:${TOOLS_YACC}:g' \ + -e 's:@YACC@:${TOOLS_CMDLINE_YACC}:g' \ -e 's:@AR@:${AR}:g' \ -e 's:@MKDIR@:${MKDIR}:g' \ -e 's:@LIBQT@:${LIBQT}:g' \ |