Received: by mail.netbsd.org (Postfix, from userid 605) id A2B3B84CFD; Tue, 24 Mar 2020 20:41:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2C20384CEF for ; Tue, 24 Mar 2020 20:41:19 +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 lnB6kvw2EYg2 for ; Tue, 24 Mar 2020 20:41:18 +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 821CD84CE3 for ; Tue, 24 Mar 2020 20:41:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 777A9FB27; Tue, 24 Mar 2020 20:41:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1585082478190490" MIME-Version: 1.0 Date: Tue, 24 Mar 2020 20:41:18 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/lang/rust To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20200324204118.777A9FB27@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. --_----------=_1585082478190490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Tue Mar 24 20:41:18 UTC 2020 Modified Files: pkgsrc/lang/rust: Makefile Log Message: Loosen data/address space limits. Apply it consistently during the build. To generate a diff of this commit: cvs rdiff -u -r1.157 -r1.158 pkgsrc/lang/rust/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1585082478190490 Content-Disposition: inline Content-Length: 1139 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.157 pkgsrc/lang/rust/Makefile:1.158 --- pkgsrc/lang/rust/Makefile:1.157 Fri Mar 20 09:25:00 2020 +++ pkgsrc/lang/rust/Makefile Tue Mar 24 20:41:18 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.157 2020/03/20 09:25:00 he Exp $ +# $NetBSD: Makefile,v 1.158 2020/03/24 20:41:18 joerg Exp $ DISTNAME= rustc-1.42.0-src PKGNAME= ${DISTNAME:S/rustc/rust/:S/-src//} @@ -99,7 +99,7 @@ MAKE_ENV+= CARGO_BUILD_JOBS=${_MAKE_JOB CFLAGS.SunOS+= -D_POSIX_PTHREAD_SEMANTICS -UNLIMIT_RESOURCES+= cputime +UNLIMIT_RESOURCES+= cputime datasize virtualsize TEST_TARGET= check @@ -360,12 +360,12 @@ pre-build: pre-build-fix do-build: cd ${WRKSRC} \ - && ${SETENV} ${MAKE_ENV} \ + && ${_ULIMIT_CMD} ${SETENV} ${MAKE_ENV} \ ${PYTHONBIN} ./x.py -v ${BUILD_TARGET} -j ${_MAKE_JOBS_N} do-install: cd ${WRKSRC} \ - && ${SETENV} ${MAKE_ENV} ${INSTALL_ENV} \ + && ${_ULIMIT_CMD} ${SETENV} ${MAKE_ENV} ${INSTALL_ENV} \ ${PYTHONBIN} ./x.py -v install -j ${_MAKE_JOBS_N} GENERATE_PLIST+= find ${DESTDIR}${PREFIX} \( -type f -o -type l \) -print | \ --_----------=_1585082478190490--