diff options
author | Tuncer Ayaz <[email protected]> | 2014-02-18 20:13:04 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2014-02-24 11:45:52 +0100 |
commit | 8bc98681fa6bcc7c66c3380f8ceeea12f015f6f6 (patch) | |
tree | dbf241ffb7e4c4c9a764ac938a1ff796f5641ce5 /make | |
parent | b4ce42faabe27edc735d2e3c0cc0dc4981f62299 (diff) | |
download | otp-8bc98681fa6bcc7c66c3380f8ceeea12f015f6f6.tar.gz otp-8bc98681fa6bcc7c66c3380f8ceeea12f015f6f6.tar.bz2 otp-8bc98681fa6bcc7c66c3380f8ceeea12f015f6f6.zip |
Use correct variable name for silent rule C++ compiler
Using CPP as the variable name for the C++ compiler makes no sense, as CPP
usually refers to the C/C++ preprocessor. That's why we have CXXFLAGS for C++
and CPPFLAGS for the C/C++ preprocessor.
Diffstat (limited to 'make')
-rw-r--r-- | make/output.mk.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/make/output.mk.in b/make/output.mk.in index 51d9401280..f2f738a2ce 100644 --- a/make/output.mk.in +++ b/make/output.mk.in @@ -65,9 +65,9 @@ cc_verbose_0 = @echo " CC "$@; cc_verbose = $(cc_verbose_$(V)) V_CC = $(cc_verbose)$(CC) -cpp_verbose_0 = @echo " CPP "$@; -cpp_verbose = $(cpp_verbose_$(V)) -V_CPP = $(cpp_verbose)$(CPP) +cxx_verbose_0 = @echo " CXX "$@; +cxx_verbose = $(cxx_verbose_$(V)) +V_CXX = $(cxx_verbose)$(CXX) # For the diameter compiler. dia_verbose_0 = @echo " DIA "$@; |