From a8147f0c8c7c918a8b6953059f20ad9a57b301a7 Mon Sep 17 00:00:00 2001 From: Justin Bogner Date: Mon, 11 Jun 2018 23:05:28 +0000 Subject: [PATCH] [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 --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index a22e6e9fcd2..a2085878166 100644 --- a/CMakeLists.txt +++ b/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()