diff options
author | jlam <jlam@pkgsrc.org> | 2004-02-08 04:03:14 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-02-08 04:03:14 +0000 |
commit | a1c40fc01e1737a857b8fa9bb6d54626ea356936 (patch) | |
tree | 11342275f655e55025aec319c80c509cee054445 /x11/qt3-libs/Makefile.common | |
parent | 7edd809ba5c320a75e8b07a38b5185ffba678b14 (diff) | |
download | pkgsrc-a1c40fc01e1737a857b8fa9bb6d54626ea356936.tar.gz |
We no longer need to explicitly call ${BUILDLINK_*} for CC, CXX, LIBTOOL,
etc. because the bare variables will point to the correct executables.
Diffstat (limited to 'x11/qt3-libs/Makefile.common')
-rw-r--r-- | x11/qt3-libs/Makefile.common | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/x11/qt3-libs/Makefile.common b/x11/qt3-libs/Makefile.common index 3e6629567f1..76b32a012cc 100644 --- a/x11/qt3-libs/Makefile.common +++ b/x11/qt3-libs/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.27 2004/02/02 13:02:50 jlam Exp $ +# $NetBSD: Makefile.common,v 1.28 2004/02/08 04:03:15 jlam Exp $ # DISTNAME= qt-x11-free-${QTVERSION} CATEGORIES= x11 @@ -75,9 +75,9 @@ post-patch: -e 's:@LOCALBASE@:${LOCALBASE}:g' \ -e 's:@X11BASE@:${X11BASE}:g' \ -e 's:@X11PREFIX@:${X11PREFIX}:g' \ - -e 's:@LIBTOOL@:${BUILDLINK_LIBTOOL:T}:g' \ - -e 's:@CC@:${BUILDLINK_CC:T}:g' \ - -e 's:@CXX@:${BUILDLINK_CXX:T}:g' \ + -e 's:@LIBTOOL@:${LIBTOOL}:g' \ + -e 's:@CC@:${CC}:g' \ + -e 's:@CXX@:${CXX}:g' \ -e 's:@LDFLAGS@:${LDFLAGS}:g' \ -e 's:@CFLAGS@:${CFLAGS}:g' \ -e 's:@CXXFLAGS@:${CXXFLAGS}:g' \ |