diff options
author | Guillem Jover <guillem@hadrons.org> | 2018-11-22 02:39:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-11-28 14:31:28 (GMT) |
commit | 38e75bb3c6c4c41ff80697876aa7498c80a8623a (patch) | |
tree | f32d73b8380618d9937d8f61dc0b934cd2b7f21d /Source | |
parent | 0fc6faf2ddfb146704146d13b71bfd048128917f (diff) | |
download | CMake-38e75bb3c6c4c41ff80697876aa7498c80a8623a.zip CMake-38e75bb3c6c4c41ff80697876aa7498c80a8623a.tar.gz CMake-38e75bb3c6c4c41ff80697876aa7498c80a8623a.tar.bz2 |
CPack/Deb: Remove paxr as a supported tar format for a .deb
The only format supported from the ones available within cpack is
gnutar, which supports large numbers encoded in base-256, and long
filenames and linknames. PAX is not and has never been a supported
format by dpkg.
Fixes: #18620
Diffstat (limited to 'Source')
-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 ea0ee58..29968af 100644 --- a/Source/CPack/cmCPackDebGenerator.cxx +++ b/Source/CPack/cmCPackDebGenerator.cxx @@ -80,7 +80,7 @@ DebGenerator::DebGenerator( , WorkDir(workDir) , TopLevelDir(topLevelDir) , TemporaryDir(temporaryDir) - , DebianArchiveType(debianArchiveType ? debianArchiveType : "paxr") + , DebianArchiveType(debianArchiveType ? debianArchiveType : "gnutar") , ControlValues(controlValues) , GenShLibs(genShLibs) , ShLibsFilename(shLibsFilename) |