pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/syncdir Use ${LIBTOOL}, not ${PKG_LIBTOOL}, when...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a3d9fa27827d
branches:  trunk
changeset: 483527:a3d9fa27827d
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Sun Nov 14 08:41:24 2004 +0000

description:
Use ${LIBTOOL}, not ${PKG_LIBTOOL}, when invoking libtool from the package
Makefile so that we use the wrapper script.

diffstat:

 devel/syncdir/Makefile |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (26 lines):

diff -r a018a7e6dbb9 -r a3d9fa27827d devel/syncdir/Makefile
--- a/devel/syncdir/Makefile    Sun Nov 14 08:00:14 2004 +0000
+++ b/devel/syncdir/Makefile    Sun Nov 14 08:41:24 2004 +0000
@@ -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 @@
 
 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"



Home | Main Index | Thread Index | Old Index