diff options
author | jperkin <jperkin@pkgsrc.org> | 2021-10-06 10:20:24 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2021-10-06 10:20:24 +0000 |
commit | e6cb5caa489b595c39a6527ed483e24ca48a343d (patch) | |
tree | edf99dc1024deb9bad8c682fc6eceb47b382085e /lang | |
parent | fe18c81a6cc4496e44564d1c529d6c6861c5f2da (diff) | |
download | pkgsrc-e6cb5caa489b595c39a6527ed483e24ca48a343d.tar.gz |
rust: Drop digest from USE_TOOLS.
It's already added to bootstrap tools by mk, and adding it here actually
has the opposite effect of what's intended. It seems to confuse the
tools infrastructure and defer its dependency, i.e. until it's too late,
causing "digest: not found" errors if it's not already installed.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/rust/cargo.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/rust/cargo.mk b/lang/rust/cargo.mk index 0f902c1a9fe..6eb35cc11af 100644 --- a/lang/rust/cargo.mk +++ b/lang/rust/cargo.mk @@ -1,4 +1,4 @@ -# $NetBSD: cargo.mk,v 1.27 2021/07/22 16:09:46 tnn Exp $ +# $NetBSD: cargo.mk,v 1.28 2021/10/06 10:20:24 jperkin Exp $ # # Common logic that can be used by packages that depend on cargo crates # from crates.io. This lets existing pkgsrc infrastructure fetch and verify @@ -25,7 +25,7 @@ CHECK_SSP_SUPPORTED= no .include "../../lang/rust/rust.mk" -USE_TOOLS+= bsdtar digest +USE_TOOLS+= bsdtar CARGO_VENDOR_DIR= ${WRKDIR}/vendor DISTFILES?= ${DEFAULT_DISTFILES} |