diff options
author | Rahul Gottipati <rahul.blr97@gmail.com> | 2020-06-25 13:36:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-06-30 15:20:41 (GMT) |
commit | 27b03281e2028d8239c3f7e43ea67f30a70dc42b (patch) | |
tree | 932b13ea34f2256e7d3400d5264cbf39b28f7096 /Source/CPack | |
parent | f2b84d24cfccf49b6332cf3f2ca164fd71ae023e (diff) | |
download | CMake-27b03281e2028d8239c3f7e43ea67f30a70dc42b.zip CMake-27b03281e2028d8239c3f7e43ea67f30a70dc42b.tar.gz CMake-27b03281e2028d8239c3f7e43ea67f30a70dc42b.tar.bz2 |
configure_file: Add option to control file permissions transfer to copy
Issue: #20866
Diffstat (limited to 'Source/CPack')
-rw-r--r-- | Source/CPack/cmCPackGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackGenerator.cxx b/Source/CPack/cmCPackGenerator.cxx index 7990504..fd81495 100644 --- a/Source/CPack/cmCPackGenerator.cxx +++ b/Source/CPack/cmCPackGenerator.cxx @@ -1326,7 +1326,7 @@ bool cmCPackGenerator::ConfigureFile(const std::string& inName, bool copyOnly /* = false */) { return this->MakefileMap->ConfigureFile(inName, outName, copyOnly, true, - false) == 1; + false, true) == 1; } int cmCPackGenerator::CleanTemporaryDirectory() |