diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-11-14 13:48:32 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-11-14 13:48:32 (GMT) |
commit | 22fb266d06517b83026c2f0a99e4a92b5c35efb4 (patch) | |
tree | 2073df8bc72f568b93138df20e227c77ba50c693 /Source/CPack | |
parent | 57865607f464999961e874b3aad8bfb9768c88e1 (diff) | |
download | CMake-22fb266d06517b83026c2f0a99e4a92b5c35efb4.zip CMake-22fb266d06517b83026c2f0a99e4a92b5c35efb4.tar.gz CMake-22fb266d06517b83026c2f0a99e4a92b5c35efb4.tar.bz2 |
use different tar format to handle longer file names
Diffstat (limited to 'Source/CPack')
-rw-r--r-- | Source/CPack/cmCPackArchiveGenerator.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/CPack/cmCPackArchiveGenerator.cxx b/Source/CPack/cmCPackArchiveGenerator.cxx index e205419..ba221a3 100644 --- a/Source/CPack/cmCPackArchiveGenerator.cxx +++ b/Source/CPack/cmCPackArchiveGenerator.cxx @@ -55,8 +55,7 @@ bool SetArchiveType(struct archive* a, { case cmCPackArchiveGenerator::TAR: // maybe this: - //res = archive_write_set_format_pax(a); - res = archive_write_set_format_ustar(a); // is this what we want? + res = archive_write_set_format_pax_restricted(a); break; case cmCPackArchiveGenerator::ZIP: res = archive_write_set_format_zip(a); |