Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bootstrap: Use pkgsrc ksh shell for Darwin #67

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion bootstrap/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,9 @@ Darwin)
need_bsd_install=no
need_awk=yes
need_sed=yes
# Fix for System Integrity Protection which was included in 10.11 and later
# https://support.apple.com/en-us/HT204899
need_ksh=yes
set_opsys=no
machine_arch=`get_machine_arch_darwin`
CC=${CC:-"cc -isystem /usr/include"}; export CC
Expand All @@ -603,6 +606,7 @@ Darwin)
10.[0-7])
need_awk=no
need_sed=no
need_ksh=no
;;
esac
unset osrev macosx_version
Expand Down Expand Up @@ -768,7 +772,7 @@ Minix)
set_opsys=no
machine_arch=`uname -p`
check_compiler=yes
;;
;;
MirBSD)
root_group=wheel
need_pax=yes
Expand Down