17 lines
451 B
Plaintext
Raw Normal View History

#!/bin/bash
# System Ruby's mkmf on Mojave (10.14) and later require SDKROOT set to work correctly.
2021-04-20 22:52:07 +09:00
# HOMEBREW_LIBRARY is set by bin/brew
# HOMEBREW_SDKROOT is set by extend/ENV/super.rb
# shellcheck disable=SC2154
2021-04-18 18:56:20 +09:00
source "${HOMEBREW_LIBRARY}/Homebrew/shims/utils.sh"
2021-04-18 18:56:20 +09:00
try_exec_non_system "${SHIM_FILE}" "$@"
2021-04-18 18:56:20 +09:00
if [[ -z "${SDKROOT}" && -n "${HOMEBREW_SDKROOT}" ]]; then
export SDKROOT=${HOMEBREW_SDKROOT}
fi
2021-04-18 18:56:20 +09:00
safe_exec "/usr/bin/${SHIM_FILE}" "$@"