Revert "Split bsdmake wrapper out from make wrapper"
This reverts commit ba7ec6eb2f650ebc5a0ae09547eea423dbd45173. Temporarily mitigate bug fixed in 1153d0f9e20d0b6a19203707b609634f8fea1ad5.
This commit is contained in:
parent
8335401bc3
commit
6163c2a98e
@ -1,7 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
export HOMEBREW_CCCFG="O$HOMEBREW_CCCFG"
|
|
||||||
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" "$@"
|
|
||||||
1
Library/ENV/4.3/bsdmake
Symbolic link
1
Library/ENV/4.3/bsdmake
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
make
|
||||||
@ -1,3 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
export HOMEBREW_CCCFG="O$HOMEBREW_CCCFG"
|
export HOMEBREW_CCCFG="O$HOMEBREW_CCCFG"
|
||||||
exec xcrun make "$@"
|
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
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user