diff options
author | Justin Bogner <mail@justinbogner.com> | 2018-06-11 23:05:28 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2018-06-11 23:05:28 +0000 |
commit | 0af77dae16a1f9d1c09796a537de1c3448434272 (patch) | |
tree | 24e9304d3380a1f827a12be3a4c962e36861e5ac | |
parent | c72204d5b512ea3871c7dee8dd934f188e2e35bc (diff) | |
download | bcm5719-llvm-0af77dae16a1f9d1c09796a537de1c3448434272.tar.gz bcm5719-llvm-0af77dae16a1f9d1c09796a537de1c3448434272.zip |
[CMake] Fix dropped dependency in install-llvm-headers
This dependency was accidentally dropped in r319480, causing
install-distribution and install-llvm-headers to install an incomplete
set of headers (the generated Intrinsics and Attributes would be
missing).
llvm-svn: 334452
-rw-r--r-- | llvm/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt index a22e6e9fcd2..a2085878166 100644 --- a/llvm/CMakeLists.txt +++ b/llvm/CMakeLists.txt @@ -985,6 +985,7 @@ if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY) if (NOT CMAKE_CONFIGURATION_TYPES) add_llvm_install_targets(install-llvm-headers + DEPENDS llvm-headers COMPONENT llvm-headers) endif() endif() |