diff options
author | Brad King <brad.king@kitware.com> | 2020-05-11 16:11:29 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-05-11 16:13:25 (GMT) |
commit | f7a94cf282dabaa235f048e2c4e85080a4f84e61 (patch) | |
tree | a7379b9da7e3c764a22a11634d8b4c60f37b8be6 /CMakeLists.txt | |
parent | 615129f3ebd308abeaaee7f5f0689e7fc4616c28 (diff) | |
download | CMake-f7a94cf282dabaa235f048e2c4e85080a4f84e61.zip CMake-f7a94cf282dabaa235f048e2c4e85080a4f84e61.tar.gz CMake-f7a94cf282dabaa235f048e2c4e85080a4f84e61.tar.bz2 |
XL: Install our Fortran 'cpp' helper script with execute permission
This script was added by commit 19f267c75e (XL: Add support for Ninja
and XL Fortran, 2019-11-21, v3.17.0-rc1~368^2) but does not have a `.sh`
extension so our existing install rules neglect to give it execute
permission. Our test suite works on XL Fortran in the build tree but
the script is broken without execute permission on installation.
Fixes: #20695
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index fb7b9b7..0d6a38c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -810,7 +810,7 @@ if(NOT CMake_TEST_EXTERNAL_CMAKE) PATTERN "*.sh*" PERMISSIONS OWNER_READ OWNER_EXECUTE OWNER_WRITE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE - PATTERN "ExportImportList" + REGEX "/(ExportImportList|cpp)$" PERMISSIONS OWNER_READ OWNER_EXECUTE OWNER_WRITE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE |