pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/mk/build
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.
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}"
Home |
Main Index |
Thread Index |
Old Index