[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
This commit is contained in:
Justin Bogner 2018-06-11 23:05:28 +00:00
parent 3c7c1d46dc
commit a8147f0c8c

View File

@ -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()