diff options
Diffstat (limited to 'Master/tlpkg/TeXLive/TLPOBJ.pm')
-rw-r--r-- | Master/tlpkg/TeXLive/TLPOBJ.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/TeXLive/TLPOBJ.pm b/Master/tlpkg/TeXLive/TLPOBJ.pm index 7b75b4cd2cc..d36c2b1ea26 100644 --- a/Master/tlpkg/TeXLive/TLPOBJ.pm +++ b/Master/tlpkg/TeXLive/TLPOBJ.pm @@ -479,7 +479,7 @@ sub make_container { || die "$0: create($tlpobjdir/$self->{'name'}.tlpobj) failed: $!"; $self->writeout(\*TMP); close(TMP); - push @files, "$tlpobjdir/$self->{'name'}.tlpobj"; + push(@files, "$tlpobjdir/$self->{'name'}.tlpobj"); $tarname = "$containername.tar"; if ($type eq "tar") { $containername = $tarname; @@ -487,7 +487,7 @@ sub make_container { $containername = "$tarname.lzma"; } - # start the whole fun + # start the fun my $tar = $::progs{'tar'}; my $lzma; if (!defined($tar)) { @@ -517,7 +517,7 @@ sub make_container { if (-f $f || -l $f) { push(@cmdline, $f); } else { - tlwarn("$0: (make_container) $_ not a file or directory"); + tlwarn("$0: (make_container $containername) $f not file or symlink\n"); } } |