[llvm-branch-commits] [clang-tools-extra-branch] r254351 - Backport r254081 from trunk: Fix problem with Clang-tidy parallel configure build.
Eugene Zelenko via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Mon Nov 30 16:22:42 PST 2015
Author: eugenezelenko
Date: Mon Nov 30 18:22:14 2015
New Revision: 254351
URL: http://llvm.org/viewvc/llvm-project?rev=254351&view=rev
Log:
Backport r254081 from trunk: Fix problem with Clang-tidy parallel configure build.
Modified:
clang-tools-extra/branches/release_37/clang-tidy/tool/Makefile
Modified: clang-tools-extra/branches/release_37/clang-tidy/tool/Makefile
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/branches/release_37/clang-tidy/tool/Makefile?rev=254351&r1=254350&r2=254351&view=diff
==============================================================================
--- clang-tools-extra/branches/release_37/clang-tidy/tool/Makefile (original)
+++ clang-tools-extra/branches/release_37/clang-tidy/tool/Makefile Mon Nov 30 18:22:14 2015
@@ -38,10 +38,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 llvm-branch-commits
mailing list