summaryrefslogtreecommitdiffstats
path: root/compiler-rt
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
commit7dd1c36cd72cd93f82563c17ef71eb2b881101d3 (patch)
tree8fe1942867681a8f697c1bb4eccba8476bf110f6 /compiler-rt
parent82b01e002ecf3d5768afb13d77c9f848b628162e (diff)
downloadbcm5719-llvm-7dd1c36cd72cd93f82563c17ef71eb2b881101d3.tar.gz
bcm5719-llvm-7dd1c36cd72cd93f82563c17ef71eb2b881101d3.zip
[cmake] Change deprecated $<CONFIG> to $<CONFIGURATION>. NFC
See rL357338 for a similar change. The informational expression $<CONFIGURATION> has been deprecated since CMake 3.0 llvm-svn: 357348
Diffstat (limited to 'compiler-rt')
-rw-r--r--compiler-rt/cmake/Modules/AddCompilerRT.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/cmake/Modules/AddCompilerRT.cmake b/compiler-rt/cmake/Modules/AddCompilerRT.cmake
index d91c24f2ecf..bed0826ff87 100644
--- a/compiler-rt/cmake/Modules/AddCompilerRT.cmake
+++ b/compiler-rt/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
OpenPOWER on IntegriCloud