summaryrefslogtreecommitdiff
path: root/mk/bsd.pkg.use.mk
diff options
context:
space:
mode:
authorkamil <kamil@pkgsrc.org>2017-03-05 10:38:37 +0000
committerkamil <kamil@pkgsrc.org>2017-03-05 10:38:37 +0000
commit65eb42b484ee24f417d2152edd086c97cf28b5de (patch)
tree72e58c9678a92e917b5bd230f32810be6749979a /mk/bsd.pkg.use.mk
parentb06628c1d2d50085d0153eb43dd7b62e3ec82435 (diff)
downloadpkgsrc-65eb42b484ee24f417d2152edd086c97cf28b5de.tar.gz
Fix path to cross-libtool-base in TOOL_DEPENDS+= for crossbuilding
Diffstat (limited to 'mk/bsd.pkg.use.mk')
-rw-r--r--mk/bsd.pkg.use.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.use.mk b/mk/bsd.pkg.use.mk
index fe48b85a415..9bd4f358442 100644
--- a/mk/bsd.pkg.use.mk
+++ b/mk/bsd.pkg.use.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.use.mk,v 1.65 2017/01/18 05:33:39 taca Exp $
+# $NetBSD: bsd.pkg.use.mk,v 1.66 2017/03/05 10:38:37 kamil Exp $
#
# Turn USE_* macros into proper depedency logic. Included near the top of
# bsd.pkg.mk, after bsd.prefs.mk.
@@ -99,7 +99,7 @@ SHLIBTOOL?= ${WRAPPER_BINDIR}/shlibtool
.if defined(USE_LIBTOOL)
LIBTOOL_REQD?= 2.4.2nb9
.if !empty(USE_CROSS_COMPILE:M[yY][eE][sS])
-TOOL_DEPENDS+= cross-libtool-base-${MACHINE_ARCH}>=${_OPSYS_LIBTOOL_REQD:U${LIBTOOL_REQD}}:../../cross/libtool-base
+TOOL_DEPENDS+= cross-libtool-base-${MACHINE_ARCH}>=${_OPSYS_LIBTOOL_REQD:U${LIBTOOL_REQD}}:../../cross/cross-libtool-base
.else
TOOL_DEPENDS+= libtool-base>=${_OPSYS_LIBTOOL_REQD:U${LIBTOOL_REQD}}:../../devel/libtool-base
.endif