From 1e1c08f1e4b530ba7cbaccbc0f359df07ff79b5e Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Thu, 19 May 2016 00:39:50 +0000 Subject: TLPDB: sys container: logic error git-svn-id: svn://tug.org/texlive/trunk@41250 c570f23f-e606-0410-a88d-b1316a301751 --- Master/tlpkg/TeXLive/TLPOBJ.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Master/tlpkg/TeXLive/TLPOBJ.pm') 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"); } -- cgit v1.2.3