aboutsummaryrefslogtreecommitdiffstats
path: root/Library/ENV/4.3/make
blob: 1d717718b3f8a0fb393fe3f2f65c8455b6673b10 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
export HOMEBREW_CCCFG="O$HOMEBREW_CCCFG"
if [ $(basename "$0") == "bsdmake" ]; then
  pwd="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
  bsd="$pwd/../../../bin/bsdmake"
  # bsdmake used to be keg-only: support users who don't run brew doctor
  [ -x "$bsd" ] || bsd="$(${HOMEBREW_BREW_FILE} --prefix bsdmake)/bin/bsdmake"
  exec "$bsd" "$@"
else
  exec xcrun make "$@"
fi