Received: by mail.netbsd.org (Postfix, from userid 605) id 8067484D57; Thu, 26 Mar 2020 12:23:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 098B584D55 for ; Thu, 26 Mar 2020 12:23:55 +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 hYxe3hk2zUU7 for ; Thu, 26 Mar 2020 12:23:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6280084CD3 for ; Thu, 26 Mar 2020 12:23:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 603C6FB27; Thu, 26 Mar 2020 12:23:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158522543498250" MIME-Version: 1.0 Date: Thu, 26 Mar 2020 12:23:54 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/mk To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20200326122354.603C6FB27@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. --_----------=_158522543498250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Mar 26 12:23:54 UTC 2020 Modified Files: pkgsrc/mk: bsd.pkg.mk Log Message: mk: Support undefined UNLIMIT_RESOURCES. Currently virtualsize is only defined for NetBSD, breaking builds that use it on any other platform. Adding defaults for all other platforms should be done at some point, this at least unbreaks package builds for now and provides a safer default for any future additions. To generate a diff of this commit: cvs rdiff -u -r1.2035 -r1.2036 pkgsrc/mk/bsd.pkg.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158522543498250 Content-Disposition: inline Content-Length: 779 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/bsd.pkg.mk diff -u pkgsrc/mk/bsd.pkg.mk:1.2035 pkgsrc/mk/bsd.pkg.mk:1.2036 --- pkgsrc/mk/bsd.pkg.mk:1.2035 Sun Feb 9 22:39:20 2020 +++ pkgsrc/mk/bsd.pkg.mk Thu Mar 26 12:23:54 2020 @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.2035 2020/02/09 22:39:20 rillig Exp $ +# $NetBSD: bsd.pkg.mk,v 1.2036 2020/03/26 12:23:54 jperkin Exp $ # # This file is in the public domain. # @@ -231,7 +231,7 @@ _ZERO_FILESIZE_P= ${AWK} 'END { exit (NR _NONZERO_FILESIZE_P= ${AWK} 'END { exit (NR > 0) ? 0 : 1; }' # Automatically increase process limit where necessary for building. -_ULIMIT_CMD= ${UNLIMIT_RESOURCES:@_lim_@${ULIMIT_CMD_${_lim_}};@} +_ULIMIT_CMD= ${UNLIMIT_RESOURCES:@_lim_@${ULIMIT_CMD_${_lim_}:U\:};@} _NULL_COOKIE= ${WRKDIR}/.null --_----------=_158522543498250--