CMake: Fixed syntax in conditional.

llvm-svn: 96221
This commit is contained in:
Oscar Fuentes 2010-02-15 15:17:05 +00:00
parent 6b5e62fb0b
commit 37b3c48ef7
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
file(GLOB entries *)
foreach(entry ${entries})
if(IS_DIRECTORY ${entry} AND EXISTS ${entry}/CMakeLists.txt)
if(NOT (${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/compiler-rt))
if(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/compiler-rt)
add_subdirectory(${entry})
endif()
endif()