summaryrefslogtreecommitdiff
path: root/Master/bin/sparc-solaris
diff options
context:
space:
mode:
authorReinhard Kotucha <reinhard.kotucha@web.de>2007-01-07 02:13:49 +0000
committerReinhard Kotucha <reinhard.kotucha@web.de>2007-01-07 02:13:49 +0000
commitdd01fd18c62619343ca7d863947edc8506c17926 (patch)
tree7b10ff0a67cac2145f855c430fc4ab5e26549529 /Master/bin/sparc-solaris
parentfbeaf0f9099642bb4c97fce872d22d8048ab735d (diff)
Update getnonfreefonts.
git-svn-id: svn://tug.org/texlive/trunk@3188 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/sparc-solaris')
-rwxr-xr-xMaster/bin/sparc-solaris/getnonfreefonts18
1 files changed, 11 insertions, 7 deletions
diff --git a/Master/bin/sparc-solaris/getnonfreefonts b/Master/bin/sparc-solaris/getnonfreefonts
index 969a251b52c..5965b4fc64a 100755
--- a/Master/bin/sparc-solaris/getnonfreefonts
+++ b/Master/bin/sparc-solaris/getnonfreefonts
@@ -107,7 +107,7 @@ sub expand_var {
}
while (<KPSEWHICH>) {
chop;
- return $_;
+ return "$_";
}
close KPSEWHICH;
}
@@ -172,11 +172,9 @@ if ($opt_debug) {
}
-if ($sys) {
- $INSTALLROOT=expand_var 'TEXMFLOCAL';
-} else {
- $INSTALLROOT=expand_var 'TEXMFHOME';
-}
+$INSTALLROOTNAME=($sys)? 'TEXMFLOCAL':'TEXMFHOME';
+
+$INSTALLROOT=expand_var "$INSTALLROOTNAME";
($sys)? debug_msg "sys=true":debug_msg "sys=false";
@@ -188,7 +186,13 @@ $INSTALLROOT=~s/\\/\//g if ($INSTALLROOT=~/^\\\\/); # \\abc\def
debug_msg "Internal variable INSTALLROOT converted to '$INSTALLROOT'";
sub check_installroot {
- die "! ERROR: The install directory '$INSTALLROOT' doesn't exist.\n"
+ die "! ERROR: The variable $INSTALLROOTNAME is not set.\n"
+ unless length ("$INSTALLROOT") > 0;
+
+ die "! ERROR: The install directory '$INSTALLROOT' doesn't " .
+ "exist.\n" .
+ " If this is the correct path, please create " .
+ "this directory manually.\n"
unless (-d "$INSTALLROOT");
die "! ERROR: The install directory '$INSTALLROOT' is not writable.\n"