shims/super/make: don't export MAKE=make.
This is redundant and breaks Handbrake: https://github.com/HandBrake/HandBrake/issues/872
This commit is contained in:
parent
ffb582b5a6
commit
3343d79b9f
@ -1,5 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
export MAKE=${HOMEBREW_MAKE:-make}
|
||||
if [[ -n "$HOMEBREW_MAKE" && "$HOMEBREW_MAKE" != "make" ]]
|
||||
then
|
||||
export MAKE="$HOMEBREW_MAKE"
|
||||
else
|
||||
MAKE="make"
|
||||
fi
|
||||
export HOMEBREW_CCCFG="O$HOMEBREW_CCCFG"
|
||||
exec xcrun $MAKE "$@"
|
||||
exec xcrun "$MAKE" "$@"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user