[clang-tools-extra] r254081 - Fix problem with Clang-tidy parallel configure build.

Eugene Zelenko via cfe-commits cfe-commits at lists.llvm.org
Wed Nov 25 11:16:34 PST 2015


Author: eugenezelenko
Date: Wed Nov 25 13:16:34 2015
New Revision: 254081

URL: http://llvm.org/viewvc/llvm-project?rev=254081&view=rev
Log:
Fix problem with Clang-tidy parallel configure build.

Differential revision: http://reviews.llvm.org/D14964

Modified:
    clang-tools-extra/trunk/clang-tidy/tool/Makefile

Modified: clang-tools-extra/trunk/clang-tidy/tool/Makefile
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-tidy/tool/Makefile?rev=254081&r1=254080&r2=254081&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-tidy/tool/Makefile (original)
+++ clang-tools-extra/trunk/clang-tidy/tool/Makefile Wed Nov 25 13:16:34 2015
@@ -39,10 +39,10 @@ $(PROJ_sharedir):
 	$(Echo) Making install directory: $@
 	$(Verb) $(MKDIR) $@
 
-$(DESTFILES): $(SRCFILES)
+$(DESTFILES): $(SRCFILES) $(PROJ_sharedir)
 
 $(PROJ_sharedir)/%.py: $(PROJ_SRC_DIR)/%.py
 	$(Echo) Installing script file: $(notdir $<)
 	$(Verb) $(ScriptInstall) $< $(PROJ_sharedir)
 
-install-local:: $(PROJ_sharedir) $(DESTFILES)
+install-local:: $(DESTFILES)




More information about the cfe-commits mailing list