[llvm] r317742 - [CMake][runtimes] Fix the variable name

Petr Hosek via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 8 15:44:27 PST 2017


Author: phosek
Date: Wed Nov  8 15:44:27 2017
New Revision: 317742

URL: http://llvm.org/viewvc/llvm-project?rev=317742&view=rev
Log:
[CMake][runtimes] Fix the variable name

This typo causes the llvm-lit path resolution to fail.

Differential Revision: https://reviews.llvm.org/D39811

Modified:
    llvm/trunk/runtimes/CMakeLists.txt

Modified: llvm/trunk/runtimes/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/runtimes/CMakeLists.txt?rev=317742&r1=317741&r2=317742&view=diff
==============================================================================
--- llvm/trunk/runtimes/CMakeLists.txt (original)
+++ llvm/trunk/runtimes/CMakeLists.txt Wed Nov  8 15:44:27 2017
@@ -116,7 +116,7 @@ if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_
 
   set(SAFE_LLVM_BINARY_DIR ${LLVM_BINARY_DIR})
   set(SAFE_LLVM_LIBRARY_OUTPUT_INTDIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
-  set(SAFE_LLVM_RUNTIMES_OUTPUT_INTDIR ${LLVM_RUNTIME_OUTPUT_INTDIR})
+  set(SAFE_LLVM_RUNTIME_OUTPUT_INTDIR ${LLVM_RUNTIME_OUTPUT_INTDIR})
 
   # We do this in two loops so that HAVE_* is set for each runtime before the
   # other runtimes are added.




More information about the llvm-commits mailing list