makerelease-osx: Do not use implicit variables for CC/CXX

pull/253/head
Nils Maier 2014-07-08 20:06:43 +02:00
parent 897f0e87f4
commit efa268d493
1 changed files with 2 additions and 2 deletions

View File

@ -90,9 +90,9 @@ endif
endif endif
# Set up compiler. # Set up compiler.
CC ?= cc CC = cc
export CC export CC
CXX ?= c++ CXX = c++
export CXX export CXX
# Set up compiler/linker flags. # Set up compiler/linker flags.