summaryrefslogtreecommitdiffstats
path: root/FUNCTIONS
diff options
context:
space:
mode:
authorIsmael Luceno2019-05-06 22:30:03 +0200
committerIsmael Luceno2019-05-06 22:30:03 +0200
commit5192134d775147153fee04229140a92f9563e353 (patch)
tree2670fc95609a33feaa8e897d1bcd62d77832975e /FUNCTIONS
parent15846bb0d85ba00d2aa16eda0de41d2e336aa379 (diff)
FUNCTIONS: default_build_make: Override CC and HOSTCC
Diffstat (limited to 'FUNCTIONS')
-rwxr-xr-xFUNCTIONS2
1 files changed, 1 insertions, 1 deletions
diff --git a/FUNCTIONS b/FUNCTIONS
index af0aa3b04e..6dff757316 100755
--- a/FUNCTIONS
+++ b/FUNCTIONS
@@ -785,7 +785,7 @@ function default_build_configure() {
#---
function default_build_make(){
- make
+ make CC="${CC:-cc}" HOSTCC="${HOSTCC:-${CC:-cc}}"
}
#---