[libcxx] r268401 - [CMake] Fix a copy-paste error

Chris Bieneman via cfe-commits cfe-commits at lists.llvm.org
Tue May 3 09:54:20 PDT 2016


Author: cbieneman
Date: Tue May  3 11:54:20 2016
New Revision: 268401

URL: http://llvm.org/viewvc/llvm-project?rev=268401&view=rev
Log:
[CMake] Fix a copy-paste error

Based on post commit feedback from Eric Fiselier.

Modified:
    libcxx/trunk/include/CMakeLists.txt

Modified: libcxx/trunk/include/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/CMakeLists.txt?rev=268401&r1=268400&r2=268401&view=diff
==============================================================================
--- libcxx/trunk/include/CMakeLists.txt (original)
+++ libcxx/trunk/include/CMakeLists.txt Tue May  3 11:54:20 2016
@@ -53,7 +53,7 @@ if (LIBCXX_INSTALL_HEADERS)
     # this target is just needed as a placeholder for the distribution target
     add_custom_target(libcxx-headers)
     add_custom_target(install-libcxx-headers
-                      DEPENDS ${name} libcxx-headers
+                      DEPENDS libcxx-headers
                       COMMAND "${CMAKE_COMMAND}"
                               -DCMAKE_INSTALL_COMPONENT=libcxx-headers
                               -P "${CMAKE_BINARY_DIR}/cmake_install.cmake")




More information about the cfe-commits mailing list