summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjperkin <jperkin@pkgsrc.org>2021-12-02 09:44:03 +0000
committerjperkin <jperkin@pkgsrc.org>2021-12-02 09:44:03 +0000
commit732abfd87aa12ad700ff8d1d0618694588ce8c5b (patch)
tree860cc25763228824e54ac1448731df40f1aff2c8 /mk
parentf972270dac63780b0e552b65d3edaf1d5a5e8120 (diff)
downloadpkgsrc-732abfd87aa12ad700ff8d1d0618694588ce8c5b.tar.gz
mk: Remove use of /bin/ksh wrapper hack on Darwin.
There are only a few releases where this appears to work, and the commit logs show this to be a complete pain to get working. I've now confirmed it's also broken on Big Sur where ksh simply segfaults on both x86_64 and arm64. This may have been marginally useful in the past, but we now have cwrappers to provide a much bigger performance improvement, and so this hack was only used during bootstrap to build a small number of packages anyway.
Diffstat (limited to 'mk')
-rw-r--r--mk/platform/Darwin.mk9
1 files changed, 1 insertions, 8 deletions
diff --git a/mk/platform/Darwin.mk b/mk/platform/Darwin.mk
index 1cb443dcd9f..1c50d57fda3 100644
--- a/mk/platform/Darwin.mk
+++ b/mk/platform/Darwin.mk
@@ -1,4 +1,4 @@
-# $NetBSD: Darwin.mk,v 1.110 2021/11/29 16:14:23 jperkin Exp $
+# $NetBSD: Darwin.mk,v 1.111 2021/12/02 09:44:03 jperkin Exp $
#
# Variable definitions for the Darwin operating system.
@@ -253,13 +253,6 @@ MAKE_ENV+= MACOSX_DEPLOYMENT_TARGET="10.4"
CONFIGURE_ENV+= gl_cv_func_getcwd_abort_bug=no
.endif
-# Use ksh to improve wrapper script performance, except on buggy Mavericks.
-.if exists(/bin/ksh)
-. if ${OPSYS_VERSION} < 100900 || ${OPSYS_VERSION} >= 101000
-WRAPPER_BIN_SH?= /bin/ksh
-. endif
-.endif
-
# strnlen(3) is available from Lion onwards
.if ${OPSYS_VERSION} < 100700
_OPSYS_MISSING_FEATURES+= strnlen