diff options
author | Raffi Enficiaud <raffi.enficiaud@mines-paris.org> | 2015-10-23 10:01:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-10-23 14:58:43 (GMT) |
commit | 66178ae5a0a154c11934574347b75e71772b77b9 (patch) | |
tree | 683aa52b805e3c8aa056f738fa4c73eb0d9b12a2 /Source/CPack | |
parent | becb14c9552578954bc99e2428b8e6f383eadb55 (diff) | |
download | CMake-66178ae5a0a154c11934574347b75e71772b77b9.zip CMake-66178ae5a0a154c11934574347b75e71772b77b9.tar.gz CMake-66178ae5a0a154c11934574347b75e71772b77b9.tar.bz2 |
CPackDEB: Use proper compression scheme for control.tar.gz
Changes in commit v3.4.0-rc1~79^2~1 (CPackDeb: use of libarchive and
removal of fakeroot, 2015-09-11) accidentally set the wrong compression
scheme for the `control.tar.gz` file. Set it explicitly to GZip.
Diffstat (limited to 'Source/CPack')
-rw-r--r-- | Source/CPack/cmCPackDebGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackDebGenerator.cxx b/Source/CPack/cmCPackDebGenerator.cxx index 9402689..f9dfdf6 100644 --- a/Source/CPack/cmCPackDebGenerator.cxx +++ b/Source/CPack/cmCPackDebGenerator.cxx @@ -565,7 +565,7 @@ int cmCPackDebGenerator::createDeb() return 0; } cmArchiveWrite control_tar(fileStream_control_tar, - tar_compression_type, + cmArchiveWrite::CompressGZip, "paxr"); // sets permissions and uid/gid for the files |