diff options
author | jlam <jlam@pkgsrc.org> | 2004-11-14 08:41:24 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-11-14 08:41:24 +0000 |
commit | c797952c872f8ea8ea66e958d898aedd3722b7cc (patch) | |
tree | d37d811fca8582e45270279386e9a52b75c07e13 /devel | |
parent | 4bed44310db585ce673cfd4daa5fbc804aa0a41a (diff) | |
download | pkgsrc-c797952c872f8ea8ea66e958d898aedd3722b7cc.tar.gz |
Use ${LIBTOOL}, not ${PKG_LIBTOOL}, when invoking libtool from the package
Makefile so that we use the wrapper script.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/syncdir/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/devel/syncdir/Makefile b/devel/syncdir/Makefile index 56e92c6ad36..35570561c34 100644 --- a/devel/syncdir/Makefile +++ b/devel/syncdir/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2004/10/03 00:13:33 tv Exp $ +# $NetBSD: Makefile,v 1.3 2004/11/14 08:41:24 jlam Exp $ # DISTNAME= syncdir-1.0 @@ -19,12 +19,12 @@ INSTALLATION_DIRS= lib do-build: cd ${WRKSRC}; \ - ${PKG_LIBTOOL} --mode=compile ${CC} ${CFLAGS} -c syncdir.c; \ - ${PKG_LIBTOOL} --mode=link ${CC} ${LDFLAGS} -version-info 1:0:0 -rpath ${PREFIX}/lib -o libsyncdir.la syncdir.lo + ${LIBTOOL} --mode=compile ${CC} ${CFLAGS} -c syncdir.c; \ + ${LIBTOOL} --mode=link ${CC} ${LDFLAGS} -version-info 1:0:0 -rpath ${PREFIX}/lib -o libsyncdir.la syncdir.lo do-install: cd ${WRKSRC}; \ - ${PKG_LIBTOOL} --mode=install ${INSTALL_LIB} -c libsyncdir.la ${PREFIX}/lib/libsyncdir.la; \ - ${PKG_LIBTOOL} --mode=install ${INSTALL_LIB} -c .libs/libsyncdir.a ${PREFIX}/lib/libsyncdir.a + ${LIBTOOL} --mode=install ${INSTALL_LIB} -c libsyncdir.la ${PREFIX}/lib/libsyncdir.la; \ + ${LIBTOOL} --mode=install ${INSTALL_LIB} -c .libs/libsyncdir.a ${PREFIX}/lib/libsyncdir.a .include "../../mk/bsd.pkg.mk" |