Received: by mail.netbsd.org (Postfix, from userid 605) id 2A3F484D5B; Wed, 29 Nov 2017 12:25:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AA77584CE4 for ; Wed, 29 Nov 2017 12:25:46 +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 sXFt9sH0GZji for ; Wed, 29 Nov 2017 12:25:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0D13884CDC for ; Wed, 29 Nov 2017 12:25:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 07A9AFB40; Wed, 29 Nov 2017 12:25:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1511958346111110" MIME-Version: 1.0 Date: Wed, 29 Nov 2017 12:25:46 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/lang/rust To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20171129122546.07A9AFB40@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. --_----------=_1511958346111110 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Nov 29 12:25:45 UTC 2017 Modified Files: pkgsrc/lang/rust: Makefile Log Message: rust: remove lib/rustlib/uninstall.sh It is not used in pkgsrc and contains a hardcoded reference to /bin/bash. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/lang/rust/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1511958346111110 Content-Disposition: inline Content-Length: 734 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.20 pkgsrc/lang/rust/Makefile:1.21 --- pkgsrc/lang/rust/Makefile:1.20 Tue Nov 28 00:07:27 2017 +++ pkgsrc/lang/rust/Makefile Wed Nov 29 12:25:45 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2017/11/28 00:07:27 ryoon Exp $ +# $NetBSD: Makefile,v 1.21 2017/11/29 12:25:45 wiz Exp $ DISTNAME= rustc-1.22.1-src PKGNAME= ${DISTNAME:S/rustc/rust/:S/-src//} @@ -170,6 +170,7 @@ do-install: post-install: ${RM} -f ${DESTDIR}${PREFIX}/lib/rustlib/install.log + ${RM} -f ${DESTDIR}${PREFIX}/lib/rustlib/uninstall.sh ${RM} -rf ${DESTDIR}${PREFIX}/lib/rustlib/src GENERATE_PLIST+= find ${DESTDIR}${PREFIX} \( -type f -o -type l \) -print | \ --_----------=_1511958346111110--