Add make shim to Linux super env

This commit is contained in:
Maxim Belkin 2018-06-27 14:08:00 -05:00
parent 0d33aba0b7
commit 6ad6128f9b
No known key found for this signature in database
GPG Key ID: AC71560D4C5F2338

View File

@ -0,0 +1,10 @@
#!/bin/bash
if [[ -n "$HOMEBREW_MAKE" && "$HOMEBREW_MAKE" != "make" ]]
then
export MAKE="$HOMEBREW_MAKE"
else
MAKE="make"
fi
export HOMEBREW_CCCFG="O$HOMEBREW_CCCFG"
exec "$MAKE" "$@"