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:
Mike McQuaid 2017-10-01 12:36:13 +01:00
parent ffb582b5a6
commit 3343d79b9f

View File

@ -1,5 +1,10 @@
#!/bin/bash #!/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" export HOMEBREW_CCCFG="O$HOMEBREW_CCCFG"
exec xcrun $MAKE "$@" exec xcrun "$MAKE" "$@"