summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-11-01 00:55:21 +0000
committerKarl Berry <karl@freefriends.org>2008-11-01 00:55:21 +0000
commitc37a9f77a36782cbc4aefc015b3b08eabdf2f4a1 (patch)
tree78de7deed5fa55cd0b39c852593f7132f472a231
parent71672704bcab050f2e52fc04c103bb4a9e92b586 (diff)
doc fixes
git-svn-id: svn://tug.org/texlive/trunk@11145 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xMaster/install-tl5
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgr.pl4
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm4
3 files changed, 9 insertions, 4 deletions
diff --git a/Master/install-tl b/Master/install-tl
index 05e21982ba7..d7656e4cc80 100755
--- a/Master/install-tl
+++ b/Master/install-tl
@@ -1504,6 +1504,11 @@ L<http://mirror.ctan.org>; the chosen mirror is used for the entire
download. (See L<http://ctan.org> for more about the CTAN mirror
services.)
+After installation is complete, you can use that installation as the
+location for another installation. If you chose to install less than
+the full scheme containing all packages, the list of available schemes
+will be adjusted accordingly.
+
=item B<-no-cls>
(only for text mode installer) do not clear the screen when entering
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>;
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index 594f2cb20f9..21fce2c430c 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -500,9 +500,9 @@ sub mkdirhier {
$subdir .= ("$dir" . "/");
unless (-d $subdir) {
if (defined $mode) {
- mkdir ("$subdir", $mode) or die "Can't mkdir '$subdir': $!.\n";
+ mkdir ($subdir, $mode) || die "mkdir($subdir) failed, goodbye: $!";
} else {
- mkdir "$subdir" or die "Can't mkdir '$subdir': $!.\n";
+ mkdir ($subdir) || die "mkdir($subdir) failed, goodbye: $!";
}
}
}