diff options
author | John Crispin <blogic@openwrt.org> | 2012-06-18 08:50:26 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2012-06-18 08:50:26 +0000 |
commit | 37b25592de08ff47e53bf1a775b79643d0cce7f3 (patch) | |
tree | 18b28adcd65ee4573a2f5b940789bdc1baf37147 /include/uclibc++.mk | |
parent | 75a137d38bd701a4062789e7a59b173d20db6928 (diff) | |
download | upstream-37b25592de08ff47e53bf1a775b79643d0cce7f3.tar.gz upstream-37b25592de08ff47e53bf1a775b79643d0cce7f3.tar.bz2 upstream-37b25592de08ff47e53bf1a775b79643d0cce7f3.zip |
[uclibc++] fix ccache related build breakage
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32421 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include/uclibc++.mk')
-rw-r--r-- | include/uclibc++.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/uclibc++.mk b/include/uclibc++.mk index 084ba6aab1..a1a61f26d4 100644 --- a/include/uclibc++.mk +++ b/include/uclibc++.mk @@ -9,8 +9,8 @@ CXX_DEPENDS = +USE_UCLIBCXX:uclibcxx +USE_LIBSTDCXX:libstdcpp ifneq ($(CONFIG_USE_UCLIBCXX),) ifneq ($(CONFIG_CCACHE),) - TARGET_CXX_NOCACHE="g++-uc" + TARGET_CXX_NOCACHE=g++-uc else - TARGET_CXX="g++-uc" + TARGET_CXX=g++-uc endif endif |