Received: by mail.netbsd.org (Postfix, from userid 605) id DED9984D5E; Thu, 26 Mar 2020 20:05:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6833184D5A for ; Thu, 26 Mar 2020 20:05:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id C9DDsFaBBk3g for ; Thu, 26 Mar 2020 20:05:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B553884CD3 for ; Thu, 26 Mar 2020 20:05:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A8BB2FB27; Thu, 26 Mar 2020 20:05:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1585253129285760" MIME-Version: 1.0 Date: Thu, 26 Mar 2020 20:05:29 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/lang/rust To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200326200529.A8BB2FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1585253129285760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Thu Mar 26 20:05:29 UTC 2020 Modified Files: pkgsrc/lang/rust: Makefile Log Message: lang/rust: remove trailing slash from dependency path https://mail-index.netbsd.org/pkgsrc-changes/2020/03/26/msg209490.html > This causes problems with bulk builds, at least with limited builds, as > the trailing slash in a package directory name causes pbulk-scan to > fail with "Invalid path from master" and leads to a hung scan phase. To generate a diff of this commit: cvs rdiff -u -r1.158 -r1.159 pkgsrc/lang/rust/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1585253129285760 Content-Disposition: inline Content-Length: 765 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/rust/Makefile diff -u pkgsrc/lang/rust/Makefile:1.158 pkgsrc/lang/rust/Makefile:1.159 --- pkgsrc/lang/rust/Makefile:1.158 Tue Mar 24 20:41:18 2020 +++ pkgsrc/lang/rust/Makefile Thu Mar 26 20:05:29 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.158 2020/03/24 20:41:18 joerg Exp $ +# $NetBSD: Makefile,v 1.159 2020/03/26 20:05:29 rillig Exp $ DISTNAME= rustc-1.42.0-src PKGNAME= ${DISTNAME:S/rustc/rust/:S/-src//} @@ -479,7 +479,7 @@ stage0-bootstrap: install (${MACHINE_ARCH} == "powerpc")) \ && (empty(OS_VERSION:M[012345678].*) || \ !empty(OS_VERSION:M8.99.*)) -DEPENDS+= compat80>=0:../../emulators/compat80/ +DEPENDS+= compat80>=0:../../emulators/compat80 .endif .include "../../devel/zlib/buildlink3.mk" --_----------=_1585253129285760--