diff options
author | csk <csk@ableton.com> | 2017-04-07 17:17:41 +0200 |
---|---|---|
committer | dir <dir@ableton.com> | 2017-04-11 16:47:10 +0200 |
commit | 88a1c3f61b9f97cda3f6e88608b40b40d99d4a74 (patch) | |
tree | 47c8b81cb536cd0df4b9a91f13ece834b50425f1 /mk | |
parent | 6f43ed9bd0b65ee9165176de9d1309bf113cbfbf (diff) |
Fix CXX variable when using ccache
Diffstat (limited to 'mk')
-rw-r--r-- | mk/vars.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/vars.mk b/mk/vars.mk index eca2c2fd3..912fa5e73 100644 --- a/mk/vars.mk +++ b/mk/vars.mk @@ -107,7 +107,7 @@ endif ifeq ($(ADK_BUILD_COMPILER_GCC),y) ifneq ($(strip ${ADK_USE_CCACHE}),) TARGET_CC:= $(STAGING_HOST_DIR)/usr/bin/ccache ${TARGET_CC_NO_CCACHE} -TARGET_CXX:= $(STAGING_HOST_DIR)/usr/bin/ccache ${TARGET_CXX_NO_CXXACHE} +TARGET_CXX:= $(STAGING_HOST_DIR)/usr/bin/ccache ${TARGET_CXX_NO_CCACHE} endif # for x86_64 x32 ABI we need to extend TARGET_CC/TARGET_CXX |