diff options
author | Karl Berry <karl@freefriends.org> | 2008-09-14 22:31:10 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-09-14 22:31:10 +0000 |
commit | 2275af57b71af93b9bda7846e8160f47810e3945 (patch) | |
tree | e143ef7925608b9d9be619f34a3a6d2425ab987a /Master/tlpkg | |
parent | 5bd28856b87ac705dbf81491a2fe8e917daf9abb (diff) |
newline on warnings; more weird packages to think about someday
git-svn-id: svn://tug.org/texlive/trunk@10593 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rw-r--r-- | Master/tlpkg/TeXLive/TLPOBJ.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TLPOBJ.pm b/Master/tlpkg/TeXLive/TLPOBJ.pm index beb12649cea..44c0b1b197b 100644 --- a/Master/tlpkg/TeXLive/TLPOBJ.pm +++ b/Master/tlpkg/TeXLive/TLPOBJ.pm @@ -606,7 +606,7 @@ sub make_container { if (-r "$destdir/$tarname") { system($lzma, "--force", "-z", "$destdir/$tarname"); } else { - tlwarn("Couldn't find $destdir/$tarname"); + tlwarn("Couldn't find $destdir/$tarname\n"); } # compute the size my $size = (stat "$destdir/$tarname.lzma") [7]; @@ -869,7 +869,7 @@ sub make_return_hash_from_executes { } elsif ($e =~ m/^AddHyphen\s+(.*)\s*$/) { push @dats, $1; } else { - tlwarn("Unknown execute $e in ", $self->name); + tlwarn("Unknown execute $e in ", $self->name, "\n"); } } $ret{'map'} = [ @maps ] if (@maps); |