[clang-tools-extra] r192723 - Add missing dependency for clang-modernize.

Rui Ueyama ruiu at google.com
Tue Oct 15 11:01:07 PDT 2013


Author: ruiu
Date: Tue Oct 15 13:01:06 2013
New Revision: 192723

URL: http://llvm.org/viewvc/llvm-project?rev=192723&view=rev
Log:
Add missing dependency for clang-modernize.

Clang-modernize uses clang-apply-replacements internally but its CMakefile.txt
lacked the dependency.

Modified:
    clang-tools-extra/trunk/clang-modernize/tool/CMakeLists.txt

Modified: clang-tools-extra/trunk/clang-modernize/tool/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-modernize/tool/CMakeLists.txt?rev=192723&r1=192722&r2=192723&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-modernize/tool/CMakeLists.txt (original)
+++ clang-tools-extra/trunk/clang-modernize/tool/CMakeLists.txt Tue Oct 15 13:01:06 2013
@@ -30,7 +30,7 @@ add_clang_executable(clang-modernize
   )
 
 add_dependencies(clang-modernize
-  clang-headers
+  clang-headers clang-apply-replacements
   )
 
 target_link_libraries(clang-modernize





More information about the cfe-commits mailing list