pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk/build mk/build/build.mk: use the login shell by def...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/294b4410d8e6
branches:  trunk
changeset: 428199:294b4410d8e6
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Sat Apr 25 21:36:17 2020 +0000

description:
mk/build/build.mk: use the login shell by default for build-env

diffstat:

 mk/build/build.mk |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (23 lines):

diff -r ce71ec897a0e -r 294b4410d8e6 mk/build/build.mk
--- a/mk/build/build.mk Sat Apr 25 21:33:34 2020 +0000
+++ b/mk/build/build.mk Sat Apr 25 21:36:17 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: build.mk,v 1.32 2020/02/25 05:30:14 rillig Exp $
+# $NetBSD: build.mk,v 1.33 2020/04/25 21:36:17 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 @@
 # BUILD_ENV_SHELL
 #      The shell to start.
 #
-#      Default: ${SH}
+#      Default: ${SHELL}, fallback ${SH}
 #
 # Keywords: debug build
 
-BUILD_ENV_SHELL?=      ${SH}
+BUILD_ENV_SHELL?=      ${SHELL:U${SH}}
 build-env: .PHONY ${_PKGSRC_BARRIER:Ubarrier:D_build-env}
 _build-env: .PHONY configure
        @${STEP_MSG} "Entering the build environment for ${PKGNAME}"



Home | Main Index | Thread Index | Old Index