diff options
author | Norbert Preining <preining@logic.at> | 2013-07-31 01:51:21 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2013-07-31 01:51:21 +0000 |
commit | 378cfbef38d39ff939923e3860b1bff86892e83b (patch) | |
tree | 01063c35ce05a4f4530cb6178cb30d4e2d65b642 /Master/texmf-dist/scripts | |
parent | 1ff6fa9ac516aea0051ca83e39852d26cf2450c9 (diff) |
make updmap-sys.sh call updmap --sys
git-svn-id: svn://tug.org/texlive/trunk@31321 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/updmap-sys.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Master/texmf-dist/scripts/texlive/updmap-sys.sh b/Master/texmf-dist/scripts/texlive/updmap-sys.sh index 6f3c8365658..edf3c9d6e74 100755 --- a/Master/texmf-dist/scripts/texlive/updmap-sys.sh +++ b/Master/texmf-dist/scripts/texlive/updmap-sys.sh @@ -20,11 +20,11 @@ export PATH # hack around a bug in zsh: test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"' -v=`kpsewhich -var-value TEXMFSYSVAR` -c=`kpsewhich -var-value TEXMFSYSCONFIG` +# v=`kpsewhich -var-value TEXMFSYSVAR` +# c=`kpsewhich -var-value TEXMFSYSCONFIG` -TEXMFVAR="$v" -TEXMFCONFIG="$c" -export TEXMFVAR TEXMFCONFIG +# TEXMFVAR="$v" +# TEXMFCONFIG="$c" +# export TEXMFVAR TEXMFCONFIG -exec updmap ${1+"$@"} +exec updmap --sys ${1+"$@"} |