summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Master/tlpkg/TeXLive/TLPOBJ.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/TeXLive/TLPOBJ.pm b/Master/tlpkg/TeXLive/TLPOBJ.pm
index 91a06c32a29..8f9cbf33196 100644
--- a/Master/tlpkg/TeXLive/TLPOBJ.pm
+++ b/Master/tlpkg/TeXLive/TLPOBJ.pm
@@ -602,9 +602,9 @@ sub make_container {
# overflow standard tar format and result in special things being
# done. We don't want the GNU-specific special things.
#
- my $is_sys_container = ( $containername =~ /\.r[0-9]/ );
+ my $is_user_container = ( $containername =~ /\.r[0-9]/ );
my @attrs
- = $is_sys_container
+ = $is_user_container
? ()
: ( "--owner", "0", "--group", "0", "--exclude", ".svn",
"--format", "ustar" );
@@ -688,7 +688,7 @@ sub make_container {
# if we are creating a system container, or there is a way to
# compute the checksums, do it
my $checksum = "";
- if ($is_sys_container || $::checksum_method) {
+ if (!$is_user_container || $::checksum_method) {
$checksum = TeXLive::TLCrypto::tlchecksum("$destdir/$containername");
}