]> granicus.if.org Git - clang/commit
Fix Clang install rules to not set permissions on include/
authorNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 10 Feb 2014 10:51:09 +0000 (10:51 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 10 Feb 2014 10:51:09 +0000 (10:51 +0000)
commita0b8dd6f10dc239d47fdee373c9700a4e4e76064
tree2b8cff6dae6000ea66fe2b2971f2a0cd32eb497f
parent81881ac900ad705f9ed3e8f43e7ff329b80d14ea
Fix Clang install rules to not set permissions on include/

The CMake install(DIRECTORY) command documents that it sets permissions
on directories it is asked to install.  Since the <prefix>/include
directory may not be exclusive to the LLVM/Clang installation, we should
not ask CMake to manage permissions of that directory for us.  Instead,
give only our own include/clang and include/clang-c subdirectories to
the install(DIRECTORY) command.

Fixes PR4500. Patch by Brad King.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201076 91177308-0d34-0410-b5e6-96231b3b80d8
CMakeLists.txt