Received: by mail.netbsd.org (Postfix, from userid 605) id 3FE4884D86; Tue, 18 Feb 2020 16:10:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BD21F84D65 for ; Tue, 18 Feb 2020 16:10:38 +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 nZwb2WXQYTnP for ; Tue, 18 Feb 2020 16:10:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2915B84CFD for ; Tue, 18 Feb 2020 16:10:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 22330FBF4; Tue, 18 Feb 2020 16:10:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1582042238151340" MIME-Version: 1.0 Date: Tue, 18 Feb 2020 16:10:38 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/mk/build To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20200218161038.22330FBF4@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. --_----------=_1582042238151340 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Tue Feb 18 16:10:38 UTC 2020 Modified Files: pkgsrc/mk/build: build.mk Log Message: Make sure _MAKE_JOBS_N has a valid value even if MAKE_JOBS is unset. To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 pkgsrc/mk/build/build.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1582042238151340 Content-Disposition: inline Content-Length: 723 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/build/build.mk diff -u pkgsrc/mk/build/build.mk:1.30 pkgsrc/mk/build/build.mk:1.31 --- pkgsrc/mk/build/build.mk:1.30 Sun Jan 19 18:20:46 2020 +++ pkgsrc/mk/build/build.mk Tue Feb 18 16:10:37 2020 @@ -1,4 +1,4 @@ -# $NetBSD: build.mk,v 1.30 2020/01/19 18:20:46 maya Exp $ +# $NetBSD: build.mk,v 1.31 2020/02/18 16:10:37 maya Exp $ # # This file defines what happens in the build phase, excluding the # self-test, which is defined in test.mk. @@ -63,6 +63,8 @@ _MAKE_JOBS_N= ${MAKE_JOBS.${PKGPATH}} .elif defined(MAKE_JOBS) _MAKE_JOBS= -j${MAKE_JOBS} _MAKE_JOBS_N= ${MAKE_JOBS} +.else +_MAKE_JOBS_N= 1 .endif ###################################################################### --_----------=_1582042238151340--