diff options
author | Karl Berry <karl@freefriends.org> | 2008-11-01 00:55:21 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-11-01 00:55:21 +0000 |
commit | c37a9f77a36782cbc4aefc015b3b08eabdf2f4a1 (patch) | |
tree | 78de7deed5fa55cd0b39c852593f7132f472a231 /Master/texmf | |
parent | 71672704bcab050f2e52fc04c103bb4a9e92b586 (diff) |
doc fixes
git-svn-id: svn://tug.org/texlive/trunk@11145 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index 974a3eba20b..0a8fc5de08d 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -112,8 +112,7 @@ my $action = shift; my $packagelogged = 0; # how many msgs we logged. my $texmfsysvar = `kpsewhich -var-value=TEXMFSYSVAR`; chomp($texmfsysvar); -my $packagelogfile = ($opt_packagelogfile ? $opt_packagelogfile : - "$texmfsysvar/web2c/tlmgr.log"); +my $packagelogfile ||= "$texmfsysvar/web2c/tlmgr.log"; # # Try to open the packagelog file, but do NOT die when that does not work if (!open(PACKAGELOG, ">>$packagelogfile")) { @@ -128,6 +127,7 @@ if (!defined($action) && $opt_gui) { if ($opt_version || (defined $action && $action eq "version")) { print "tlmgr revision $tlmgrrevision\n"; + print "tlmgr using installation: $Master\n"; if (open (REL_TL, "$Master/release-texlive.txt")) { # print first and last lines, which have the TL version info. my @rel_tl = <REL_TL>; |