diff options
author | grant <grant@pkgsrc.org> | 2003-12-02 23:08:24 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-12-02 23:08:24 +0000 |
commit | da25d8ca48550794e7224b32731f0ead4058f1db (patch) | |
tree | cc820ef04883eaf1d8c5e6bb5dd75bad51563e09 /mk/bsd.pkg.mk | |
parent | 204b59efb916610d85f154d5af5f6561fac9705a (diff) | |
download | pkgsrc-da25d8ca48550794e7224b32731f0ead4058f1db.tar.gz |
conditionally set LIBTOOL and SHLIBTOOL, as proposed by Michal
Pasternak on tech-pkg.
[first commit after pkgsrc meltdown ;)]
Diffstat (limited to 'mk/bsd.pkg.mk')
-rw-r--r-- | mk/bsd.pkg.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 2553d24faec..f6a3e767bf3 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1307 2003/11/27 13:02:38 taya Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1308 2003/12/02 23:08:24 grant Exp $ # # This file is in the public domain. # @@ -371,8 +371,8 @@ LIBTOOL_REQD= ${_OPSYS_LIBTOOL_REQD} .else LIBTOOL_REQD?= 1.4.20010614nb11 .endif -LIBTOOL= ${LOCALBASE}/bin/libtool -SHLIBTOOL= ${LOCALBASE}/bin/shlibtool +LIBTOOL?= ${LOCALBASE}/bin/libtool +SHLIBTOOL?= ${LOCALBASE}/bin/shlibtool .if defined(USE_LIBTOOL) PKGLIBTOOL= ${LIBTOOL} PKGSHLIBTOOL= ${SHLIBTOOL} |