2021-04-20 22:52:07 +09:00

14 lines
323 B
Bash
Executable File

#!/bin/sh
# HOMEBREW_OPT and HOMEBREW_SDKROOT are set by extend/ENV/super.rb
# shellcheck disable=SC2154
pkg_config="${HOMEBREW_OPT}/pkg-config/bin/pkg-config"
if [ -z "${HOMEBREW_SDKROOT}" ]; then
exec "${pkg_config}" "$@"
fi
exec "${pkg_config}" \
"--define-variable=homebrew_sdkroot=${HOMEBREW_SDKROOT}" \
"$@"