diff options
author | Karl Berry <karl@freefriends.org> | 2008-01-13 21:54:38 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-01-13 21:54:38 +0000 |
commit | 8ba1dd74fbfd556ff500f1b6f633a376644a4458 (patch) | |
tree | fdd15ad883bc36746c976322e1af073d6fa1ee39 /Build | |
parent | da3e320d2f5628449299c09fe1b413f5852cd6d1 (diff) |
improve error msg if mkdir pkdestdir fails
git-svn-id: svn://tug.org/texlive/trunk@6218 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 4 | ||||
-rwxr-xr-x | Build/source/texk/kpathsea/mktexpk | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index 989071edbd8..e4d0715ade5 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,5 +1,9 @@ 2008-01-13 Karl Berry <karl@tug.org> + * mktexpk: use $MT_MKTEXDIR in the error message if making + PKDESTDIR fails, instead of hardwiring mktexdir. + From Javier, 7 Jan 2008 11:33:18. + * kpsewhich.c (subdir_match): protect again loc going infinitely negative. Found by dak, 8 Jan 2008 14:51:08. diff --git a/Build/source/texk/kpathsea/mktexpk b/Build/source/texk/kpathsea/mktexpk index 4a16e0d3477..baed82a83fa 100755 --- a/Build/source/texk/kpathsea/mktexpk +++ b/Build/source/texk/kpathsea/mktexpk @@ -4,7 +4,8 @@ # (If you change or delete the word `original' on the previous line, # installation won't write this script over yours.) # -# te@dbs.uni-hannover.de, kb@mail.tug.org, and infovore@xs4all.nl. +# Originally written by Thomas Esser, Karl Berry, and Olaf Weber. +# Report bugs to tex-k@tug.org. # Public domain. version='$Id: mktexpk,v 1.34 2005/06/21 10:49:10 olaf Exp $' @@ -212,7 +213,7 @@ fi "$MT_MKTEXDIR" "$PKDESTDIR" if test ! -d "$PKDESTDIR"; then - echo "$progname: mktexdir $PKDESTDIR failed." >&2 + echo "$progname: $MT_MKTEXDIR $PKDESTDIR failed." >&2 exit 1 fi |