From e8c7d77955a7b02af88ee12aac336698164673ca Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Wed, 24 Feb 2016 22:42:47 +0000 Subject: [PATCH] [CMake] Fix a really simple, silly bug from r261797 This should fix bots with CMake older than 2.8.12. llvm-svn: 261801 --- compiler-rt/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/CMakeLists.txt b/compiler-rt/CMakeLists.txt index d85397209ae0..6565ca624fd8 100644 --- a/compiler-rt/CMakeLists.txt +++ b/compiler-rt/CMakeLists.txt @@ -33,7 +33,7 @@ if(CMAKE_VERSION VERSION_LESS 2.8.12) set(cmake_2_8_12_PRIVATE) if(APPLE) set(CMAKE_MACOSX_RPATH On) - endif + endif() else() # Use ${cmake_2_8_12_KEYWORD} intead of KEYWORD in target_link_libraries(). set(cmake_2_8_12_INTERFACE INTERFACE)