Received: by mail.netbsd.org (Postfix, from userid 605) id 4E71484DB8; Fri, 12 Jun 2020 17:33:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CEA8384D93 for ; Fri, 12 Jun 2020 17:33:24 +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 YcG6MtX2gycg for ; Fri, 12 Jun 2020 17:33:24 +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 2E83C84CDC for ; Fri, 12 Jun 2020 17:33:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 221A1FB27; Fri, 12 Jun 2020 17:33:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159198320413960" MIME-Version: 1.0 Date: Fri, 12 Jun 2020 17:33:24 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/mk/build To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200612173324.221A1FB27@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. --_----------=_159198320413960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Fri Jun 12 17:33:24 UTC 2020 Modified Files: pkgsrc/mk/build: build.mk Log Message: mk/build/build.mk: use SH for the shell in build-env Providing a realistic build environment has priority over having a convenient shell with auto-completion and all the likes. To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 pkgsrc/mk/build/build.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159198320413960 Content-Disposition: inline Content-Length: 906 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.33 pkgsrc/mk/build/build.mk:1.34 --- pkgsrc/mk/build/build.mk:1.33 Sat Apr 25 21:36:17 2020 +++ pkgsrc/mk/build/build.mk Fri Jun 12 17:33:23 2020 @@ -1,4 +1,4 @@ -# $NetBSD: build.mk,v 1.33 2020/04/25 21:36:17 rillig Exp $ +# $NetBSD: build.mk,v 1.34 2020/06/12 17:33:23 rillig Exp $ # # This file defines what happens in the build phase, excluding the # self-test, which is defined in test.mk. @@ -202,11 +202,11 @@ post-build: # BUILD_ENV_SHELL # The shell to start. # -# Default: ${SHELL}, fallback ${SH} +# Default: ${SH}, to realistically match the build environment. # # Keywords: debug build -BUILD_ENV_SHELL?= ${SHELL:U${SH}} +BUILD_ENV_SHELL?= ${SH} build-env: .PHONY ${_PKGSRC_BARRIER:Ubarrier:D_build-env} _build-env: .PHONY configure @${STEP_MSG} "Entering the build environment for ${PKGNAME}" --_----------=_159198320413960--