Received: by mail.netbsd.org (Postfix, from userid 605) id A491384DF8; Sat, 13 Oct 2018 17:54:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A9EEA84DEC for ; Sat, 13 Oct 2018 17:54:58 +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 YYMOU8jIM-TQ for ; Sat, 13 Oct 2018 17:54:58 +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 0A37B84DB1 for ; Sat, 13 Oct 2018 17:54:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E6441FBEE; Sat, 13 Oct 2018 17:54:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1539453297116160" MIME-Version: 1.0 Date: Sat, 13 Oct 2018 17:54:57 +0000 From: "Havard Eidnes" Subject: CVS commit: pkgsrc/lang/rust To: pkgsrc-changes@NetBSD.org Reply-To: he@netbsd.org X-Mailer: log_accum Message-Id: <20181013175457.E6441FBEE@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. --_----------=_1539453297116160 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: he Date: Sat Oct 13 17:54:57 UTC 2018 Modified Files: pkgsrc/lang/rust: Makefile Log Message: Hm, we need to ensure the gcc-wrap script is executable. To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 pkgsrc/lang/rust/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1539453297116160 Content-Disposition: inline Content-Length: 676 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.56 pkgsrc/lang/rust/Makefile:1.57 --- pkgsrc/lang/rust/Makefile:1.56 Sat Oct 13 11:46:47 2018 +++ pkgsrc/lang/rust/Makefile Sat Oct 13 17:54:57 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.56 2018/10/13 11:46:47 he Exp $ +# $NetBSD: Makefile,v 1.57 2018/10/13 17:54:57 he Exp $ DISTNAME= rustc-1.29.1-src PKGNAME= ${DISTNAME:S/rustc/rust/:S/-src//} @@ -238,6 +238,7 @@ post-extract: .if ${OPSYS} == "NetBSD" ${RM} -f ${.CURDIR}/files/c++-wrap ${LN} -s ${.CURDIR}/files/gcc-wrap ${.CURDIR}/files/c++-wrap + ${CHMOD} +x ${.CURDIR}/files/gcc-wrap .endif .if ${OPSYS} != "SunOS" --_----------=_1539453297116160--