summaryrefslogtreecommitdiff
path: root/cmake/Modules
diff options
context:
space:
mode:
authorFangrui Song <maskray@google.com>2019-03-30 14:38:51 +0000
committerFangrui Song <maskray@google.com>2019-03-30 14:38:51 +0000
commit4c671651cb9f30e616181589f84384f27e02105b (patch)
tree6d1882c2001c103cbcd8d93e55cbd06230cb3ad6 /cmake/Modules
parent806498c6546a07c65bb5c808a7d8964216cc24ca (diff)
downloadcompiler-rt-4c671651cb9f30e616181589f84384f27e02105b.tar.gz
[cmake] Change deprecated $<CONFIG> to $<CONFIGURATION>. NFC
See rL357338 for a similar change. The informational expression $<CONFIGURATION> has been deprecated since CMake 3.0 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@357348 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake/Modules')
-rw-r--r--cmake/Modules/AddCompilerRT.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/Modules/AddCompilerRT.cmake b/cmake/Modules/AddCompilerRT.cmake
index d91c24f2e..bed0826ff 100644
--- a/cmake/Modules/AddCompilerRT.cmake
+++ b/cmake/Modules/AddCompilerRT.cmake
@@ -615,7 +615,7 @@ macro(add_custom_libcxx name prefix)
set(run_clean "$(MAKE)" "-C" "${BINARY_DIR}" "clean")
else()
set(run_clean ${CMAKE_COMMAND} --build ${BINARY_DIR} --target clean
- --config "$<CONFIGURATION>")
+ --config "$<CONFIG>")
endif()
ExternalProject_Add_Step(${name} clean