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 /archivers/bicom | |
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 'archivers/bicom')
-rw-r--r-- | archivers/bicom/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archivers/bicom/Makefile b/archivers/bicom/Makefile index ac4eeb3e8fc..8740f74da80 100644 --- a/archivers/bicom/Makefile +++ b/archivers/bicom/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2004/01/20 12:07:06 agc Exp $ +# $NetBSD: Makefile,v 1.14 2004/02/08 04:03:14 jlam Exp $ # DISTNAME= bicom101 @@ -21,12 +21,12 @@ do-build: for i in bialib bicom; do \ cd ${WRKSRC}/$$i && \ for file in *.cpp; do \ - ${BUILDLINK_CXX} ${CXXFLAGS} -I./ -I../bialib \ + ${CXX} ${CXXFLAGS} -I./ -I../bialib \ -c $$file; \ done; \ done cd ${WRKSRC}/bicom && \ - ${BUILDLINK_CXX} ${CXXFLAGS} ${LDFLAGS} \ + ${CXX} ${CXXFLAGS} ${LDFLAGS} \ -o bicom *.o ../bialib/*.o do-install: |