Received: by mail.netbsd.org (Postfix, from userid 605) id 8750B84D6D; Mon, 31 May 2021 14:33:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C1F6284D57 for ; Mon, 31 May 2021 14:33:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id YE4XoDyBVsYU for ; Mon, 31 May 2021 14:33:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 266DB84D1B for ; Mon, 31 May 2021 14:33:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1A6A6FA95; Mon, 31 May 2021 14:33:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_162247158356500" MIME-Version: 1.0 Date: Mon, 31 May 2021 14:33:03 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/lang/rust To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20210531143303.1A6A6FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_162247158356500 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Mon May 31 14:33:03 UTC 2021 Modified Files: pkgsrc/lang/rust: cargo.mk Log Message: rust: Fix cargo module build To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/lang/rust/cargo.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_162247158356500 Content-Disposition: inline Content-Length: 863 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/rust/cargo.mk diff -u pkgsrc/lang/rust/cargo.mk:1.25 pkgsrc/lang/rust/cargo.mk:1.26 --- pkgsrc/lang/rust/cargo.mk:1.25 Mon May 31 10:17:53 2021 +++ pkgsrc/lang/rust/cargo.mk Mon May 31 14:33:02 2021 @@ -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 --_----------=_162247158356500--