summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-11-14 13:48:32 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2009-11-14 13:48:32 (GMT)
commit22fb266d06517b83026c2f0a99e4a92b5c35efb4 (patch)
tree2073df8bc72f568b93138df20e227c77ba50c693 /Source/cmSystemTools.cxx
parent57865607f464999961e874b3aad8bfb9768c88e1 (diff)
downloadCMake-22fb266d06517b83026c2f0a99e4a92b5c35efb4.zip
CMake-22fb266d06517b83026c2f0a99e4a92b5c35efb4.tar.gz
CMake-22fb266d06517b83026c2f0a99e4a92b5c35efb4.tar.bz2
use different tar format to handle longer file names
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index b16d28a..f5fba5c 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -1779,7 +1779,7 @@ bool cmSystemTools::CreateTar(const char* outFileName,
res = archive_write_set_compression_none(a);
CHECK_ARCHIVE_ERROR(res, "Can not set none:");
}
- res = archive_write_set_format_ustar(a);
+ res = archive_write_set_format_pax_restricted(a);
CHECK_ARCHIVE_ERROR(res, "Can not set tar format:");
res = archive_write_open_file(a, outFileName);
CHECK_ARCHIVE_ERROR(res, "write open:");