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

Include MacOS Ventura in bypass version check #433

Merged
merged 1 commit into from
Apr 5, 2023
Merged
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 kerl
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ _END_PATCH
# https://github.com/erlang/otp/commit/f1044ef9e35da26f276b8127640e177d67aade6a.diff
maybe_patch_macos_version_check() {
release="$1"
if is_osx_bigsur || is_osx_monterey && \
if is_osx_bigsur || is_osx_monterey || is_osx_ventura && \
[ "$release" -lt 24 ]; then
apply_bypass_version_check >>"$LOGFILE"
KERL_USE_AUTOCONF=1
Expand All @@ -866,6 +866,10 @@ is_osx_monterey() {
is_osx 21
}

is_osx_ventura() {
is_osx 22
}

apply_bypass_version_check() {
if [ -f make/configure.in ]; then
l=n stderr "Bypassing version check in make/configure.in"
Expand Down