[libcxx] r188712 - G M: minor fix to silence warning in cmake version 2.8.11.20130809-gba97e.

Howard Hinnant hhinnant at apple.com
Mon Aug 19 14:42:08 PDT 2013


Author: hhinnant
Date: Mon Aug 19 16:42:07 2013
New Revision: 188712

URL: http://llvm.org/viewvc/llvm-project?rev=188712&view=rev
Log:
G M: minor fix to silence warning in cmake version 2.8.11.20130809-gba97e.

Modified:
    libcxx/trunk/CMakeLists.txt

Modified: libcxx/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/CMakeLists.txt?rev=188712&r1=188711&r2=188712&view=diff
==============================================================================
--- libcxx/trunk/CMakeLists.txt (original)
+++ libcxx/trunk/CMakeLists.txt Mon Aug 19 16:42:07 2013
@@ -45,7 +45,7 @@ if (NOT DEFINED LIBCXX_CXX_ABI)
 endif()
 set(LIBCXX_CXX_ABI "${LIBCXX_CXX_ABI}" CACHE STRING
     "Specify C++ ABI library to use." FORCE)
-set_property(CACHE LIBCXX_CXX_ABI PROPERTY STRINGS "";${CXXABIS})
+set_property(CACHE LIBCXX_CXX_ABI PROPERTY STRINGS ;${CXXABIS})
 
 #===============================================================================
 # Configure System





More information about the cfe-commits mailing list