Received: by mail.netbsd.org (Postfix, from userid 605) id 9BABB84DC3; Sun, 5 Jan 2020 21:37:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 24F5384D67 for ; Sun, 5 Jan 2020 21:37:44 +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 nnQKh9n3uZAJ for ; Sun, 5 Jan 2020 21:37:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7EDC784CE9 for ; Sun, 5 Jan 2020 21:37:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 78915FA97; Sun, 5 Jan 2020 21:37:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157826026345650" MIME-Version: 1.0 Date: Sun, 5 Jan 2020 21:37:43 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/lang/rust To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200105213743.78915FA97@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. --_----------=_157826026345650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Jan 5 21:37:43 UTC 2020 Modified Files: pkgsrc/lang/rust: Makefile Log Message: rust: fix building on Darwin To generate a diff of this commit: cvs rdiff -u -r1.134 -r1.135 pkgsrc/lang/rust/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157826026345650 Content-Disposition: inline Content-Length: 912 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.134 pkgsrc/lang/rust/Makefile:1.135 --- pkgsrc/lang/rust/Makefile:1.134 Fri Jan 3 19:26:32 2020 +++ pkgsrc/lang/rust/Makefile Sun Jan 5 21:37:43 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.134 2020/01/03 19:26:32 jperkin Exp $ +# $NetBSD: Makefile,v 1.135 2020/01/05 21:37:43 adam Exp $ DISTNAME= rustc-1.40.0-src PKGNAME= ${DISTNAME:S/rustc/rust/:S/-src//} @@ -364,8 +364,7 @@ GENERATE_PLIST+= find ${DESTDIR}${PREFIX .PHONY: fix-darwin-install-name post-install: fix-darwin-install-name fix-darwin-install-name: - for f in ${DESTDIR}${PREFIX}/lib/librustc_macros-*.dylib \ - ${DESTDIR}${PREFIX}/lib/rustlib/${RUST_ARCH}/lib/librustc_macros-*.dylib; do \ + for f in ${DESTDIR}${PREFIX}/lib/librustc_macros-*.dylib; do \ install_name_tool -id `${ECHO} $$f | ${SED} -e 's,${DESTDIR},,g'` $$f; \ done .endif --_----------=_157826026345650--