diff options
author | Louis Dionne <ldionne@apple.com> | 2020-07-08 14:51:30 -0400 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2020-07-08 14:52:03 -0400 |
commit | ef14e52be4e1ce4a6aa2a28738aed2cfcc0a31f1 (patch) | |
tree | dbee1a6c3ead6669e73cb3f79fd3d78db00b5cbd /pstl | |
parent | 1265eb2d5f7e9cdf6a557a2a1c338f370d730917 (diff) | |
download | llvm-ef14e52be4e1ce4a6aa2a28738aed2cfcc0a31f1.zip llvm-ef14e52be4e1ce4a6aa2a28738aed2cfcc0a31f1.tar.gz llvm-ef14e52be4e1ce4a6aa2a28738aed2cfcc0a31f1.tar.bz2 |
[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.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pstl/CMakeLists.txt b/pstl/CMakeLists.txt index dd601bc..8e6e135 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) |