summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2018-10-31 12:17:01 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2018-10-31 12:17:01 +0100
commitad1c781d9f20082620aaf27f69ccbd829991017e (patch)
treed07ec10a037cc96fa6875cbe383404c54703b8c7
parente3f6c776b0abbdeff7933063e1d7a7a10b073ba1 (diff)
downloadATCD-ad1c781d9f20082620aaf27f69ccbd829991017e.tar.gz
Only set CXX and CC when they are not set by the user
* ACE/include/makeinclude/platform_linux_clang.GNU:
-rw-r--r--ACE/include/makeinclude/platform_linux_clang.GNU5
1 files changed, 2 insertions, 3 deletions
diff --git a/ACE/include/makeinclude/platform_linux_clang.GNU b/ACE/include/makeinclude/platform_linux_clang.GNU
index 303cc580393..18358952714 100644
--- a/ACE/include/makeinclude/platform_linux_clang.GNU
+++ b/ACE/include/makeinclude/platform_linux_clang.GNU
@@ -1,11 +1,10 @@
-
# This file should allow ACE to be built on Linux, using the clang compiler.
include $(ACE_ROOT)/include/makeinclude/platform_linux_common.GNU
ifeq ($(insure),0)
- CC = clang
- CXX = clang++
+ CC ?= clang
+ CXX ?= clang++
endif
ifndef CXX_VERSION