[PATCH] D14964: [clang-tidy] Fix problem with parallel configure build
Eugene Zelenko via cfe-commits
cfe-commits at lists.llvm.org
Tue Nov 24 12:39:34 PST 2015
Eugene.Zelenko created this revision.
Eugene.Zelenko added reviewers: alexfh, probinson.
Eugene.Zelenko added a subscriber: cfe-commits.
Eugene.Zelenko set the repository for this revision to rL LLVM.
This fix should solve problem with parallel configure build introduced in D12700 as suggested by Paul. Was OK on RHEL 6 with -j 4.
Repository:
rL LLVM
http://reviews.llvm.org/D14964
Files:
clang-tidy/tool/Makefile
Index: clang-tidy/tool/Makefile
===================================================================
--- clang-tidy/tool/Makefile
+++ clang-tidy/tool/Makefile
@@ -39,10 +39,10 @@
$(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)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D14964.41076.patch
Type: text/x-patch
Size: 532 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20151124/c8ec71a5/attachment.bin>
More information about the cfe-commits
mailing list