summaryrefslogtreecommitdiff
path: root/pstl
diff options
context:
space:
mode:
authorLouis Dionne <ldionne@apple.com>2020-07-08 14:51:30 -0400
committerLouis Dionne <ldionne@apple.com>2020-07-08 14:52:03 -0400
commitef14e52be4e1ce4a6aa2a28738aed2cfcc0a31f1 (patch)
treedbee1a6c3ead6669e73cb3f79fd3d78db00b5cbd /pstl
parent1265eb2d5f7e9cdf6a557a2a1c338f370d730917 (diff)
downloadllvm-ef14e52be4e1ce4a6aa2a28738aed2cfcc0a31f1.tar.gz
[pstl] Do not install the __config_site.in file
The generated version of the file is already installed -- we shouldn't install the pre-generation version of the file.
Diffstat (limited to 'pstl')
-rw-r--r--pstl/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/pstl/CMakeLists.txt b/pstl/CMakeLists.txt
index dd601bc58a4f..8e6e1354707b 100644
--- a/pstl/CMakeLists.txt
+++ b/pstl/CMakeLists.txt
@@ -86,7 +86,8 @@ install(FILES "${CMAKE_CURRENT_BINARY_DIR}/ParallelSTLConfig.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/ParallelSTLConfigVersion.cmake"
DESTINATION lib/cmake/ParallelSTL)
install(DIRECTORY include/
- DESTINATION include)
+ DESTINATION include
+ PATTERN "*.in" EXCLUDE)
install(FILES "${PSTL_CONFIG_SITE_PATH}"
DESTINATION include)