From: Louis Dionne Date: Wed, 8 Jul 2020 18:51:30 +0000 (-0400) Subject: [pstl] Do not install the __config_site.in file X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ef14e52be4e1ce4a6aa2a28738aed2cfcc0a31f1;p=platform%2Fupstream%2Fllvm.git [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. --- 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)