[PATCH] D12700: [clang-tidy] install helper scripts in CMake build

Paul Robinson via cfe-commits cfe-commits at lists.llvm.org
Tue Nov 24 09:46:02 PST 2015


probinson added a comment.

The problem is that making the install-local target will try to create the PROJ_sharedir directory in parallel with trying to copy DESTFILES to that directory.  You need to set up the dependencies such that the directory is guaranteed to be created first.  If you move the PROJ_sharedir dependency from the install-local target to the DESTFILES target that should solve it:

  $(DESTFILES): $(SRCFILES) $(PROJ_sharedir)
  ...
  install-local:: $(DESTFILES)


Repository:
  rL LLVM

http://reviews.llvm.org/D12700





More information about the cfe-commits mailing list