summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authortron <tron>2015-07-01 17:47:14 +0000
committertron <tron>2015-07-01 17:47:14 +0000
commit62958fa0c8ec6c9f179a46f0fde18b7489084a5e (patch)
tree7a16626d0751766af1323b8678f64734d42e8dd1 /mk
parentc2e0da704b9443458cfe39fe60412b44c5126ed3 (diff)
downloadpkgsrc-62958fa0c8ec6c9f179a46f0fde18b7489084a5e.tar.gz
Don't use "/bin/ksh" as wrapper shell under Mac OS X Mavericks. It was
previously excluded for a good reason.
Diffstat (limited to 'mk')
-rw-r--r--mk/platform/Darwin.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/mk/platform/Darwin.mk b/mk/platform/Darwin.mk
index dfb2cc7af49..2fa7520d33d 100644
--- a/mk/platform/Darwin.mk
+++ b/mk/platform/Darwin.mk
@@ -1,4 +1,4 @@
-# $NetBSD: Darwin.mk,v 1.67 2015/06/26 13:51:57 adam Exp $
+# $NetBSD: Darwin.mk,v 1.68 2015/07/01 17:47:14 tron Exp $
#
# Variable definitions for the Darwin operating system.
@@ -158,7 +158,8 @@ CONFIGURE_ENV+= ac_cv_func_poll=no
.endif
# Use "/bin/ksh" for buildlink3 wrapper script to improve build performance.
-.if (!empty(OS_VERSION:M9.*) || !empty(OS_VERSION:M1[0-9].*)) && \
+.if (!empty(OS_VERSION:M9.*) || !empty(OS_VERSION:M1[0-2].*) || \
+ !empty(OS_VERSION:M1[4-9].*)) && \
exists(/bin/ksh)
WRAPPER_BIN_SH?= /bin/ksh
.endif