diff options
author | Bartosz Kosiorek <bartosz.kosiorek@tomtom.com> | 2019-03-08 13:53:35 (GMT) |
---|---|---|
committer | Bartosz Kosiorek <bartosz.kosiorek@tomtom.com> | 2019-03-18 16:55:35 (GMT) |
commit | 8634576dcb03087fc507b8012a47f1ecc852f65f (patch) | |
tree | 47418b14525ece43b52697e9a82c1129d157d813 /Help/release | |
parent | c7c6a4a2cc06fd22eeb1c545dba030eddf39363a (diff) | |
download | CMake-8634576dcb03087fc507b8012a47f1ecc852f65f.zip CMake-8634576dcb03087fc507b8012a47f1ecc852f65f.tar.gz CMake-8634576dcb03087fc507b8012a47f1ecc852f65f.tar.bz2 |
cmake: Don't interrupt archive creation if unable to read a file.
Rationale:
Currently during creation of archive by 'tar',
if error appears, it interrupt archive creation.
As a result only part of files are archived
This behaviour is not consistent with 'copy_directory', native 'tar'
and other command behaviour.
With this Merge Request this behaviour is fixed.
Diffstat (limited to 'Help/release')
-rw-r--r-- | Help/release/dev/cmake-e-tar-creating-archive.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Help/release/dev/cmake-e-tar-creating-archive.rst b/Help/release/dev/cmake-e-tar-creating-archive.rst new file mode 100644 index 0000000..717855c --- /dev/null +++ b/Help/release/dev/cmake-e-tar-creating-archive.rst @@ -0,0 +1,6 @@ +cmake-e-tar-creating-archive +---------------------------- + +* The :manual:`cmake(1)` ``-E tar`` tool now continues adding files to an + archive, even if some of the files aren't readable. This behavior is more + consistent with the classic ``tar`` tool. |