diff options
author | ryoon <ryoon@pkgsrc.org> | 2021-05-31 14:33:02 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2021-05-31 14:33:02 +0000 |
commit | bf23b4b89afed74b8c3cd1ac9bb21d4a19d674e2 (patch) | |
tree | 11944168858de7e9a21c1a0b1bfba9ef313e04b7 /lang | |
parent | 3d4124593f598e1b0973cb6819c1b953044caba8 (diff) | |
download | pkgsrc-bf23b4b89afed74b8c3cd1ac9bb21d4a19d674e2.tar.gz |
rust: Fix cargo module build
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 1a39211edac..f46a040596b 100644 --- a/lang/rust/cargo.mk +++ b/lang/rust/cargo.mk @@ -1,4 +1,4 @@ -# $NetBSD: cargo.mk,v 1.25 2021/05/31 10:17:53 he Exp $ +# $NetBSD: cargo.mk,v 1.26 2021/05/31 14:33:02 ryoon 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 @@ -51,7 +51,7 @@ cargo-vendor-crates: ${RUN}${MKDIR} ${CARGO_VENDOR_DIR} .for crate in ${CARGO_CRATE_DEPENDS} ${RUN}${PRINTF} '{"package":"%s","files":{}}' \ - `$(${DIGEST} sha256 < ${_DISTDIR}/${crate}.crate` \ + `${DIGEST} sha256 < ${_DISTDIR}/${crate}.crate` \ > ${CARGO_VENDOR_DIR}/${crate}/.cargo-checksum.json .endfor |