diff options
author | Norbert Preining <preining@logic.at> | 2013-04-11 00:10:23 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2013-04-11 00:10:23 +0000 |
commit | 256ba1cea7ef384fce520613630bc5324b8f2393 (patch) | |
tree | 07542451ebb71298099cbde78c81405e3f3ae222 /Master/texmf-dist/scripts/jfontmaps/updmap-setup-kanji-sys.sh | |
parent | 75845c24c9f0186b41bcdc782c9c6bdfb314c352 (diff) |
new jfontmaps with renamed scripts
git-svn-id: svn://tug.org/texlive/trunk@29848 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/jfontmaps/updmap-setup-kanji-sys.sh')
-rwxr-xr-x | Master/texmf-dist/scripts/jfontmaps/updmap-setup-kanji-sys.sh | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/Master/texmf-dist/scripts/jfontmaps/updmap-setup-kanji-sys.sh b/Master/texmf-dist/scripts/jfontmaps/updmap-setup-kanji-sys.sh deleted file mode 100755 index f84fcd7a671..00000000000 --- a/Master/texmf-dist/scripts/jfontmaps/updmap-setup-kanji-sys.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh - -# updmap-setup-kanji-sys: -# copy of fmtutil-sys by Thomas Esser, public domain. - -# wrapper script for updmap-setup-kanji with TEXMFVAR and TEXMFCONFIG set to -# TEXMFSYSVAR / TEXMFSYSCONFIG - -test -f /bin/ksh && test -z "$RUNNING_KSH" \ - && { UNAMES=`uname -s`; test "x$UNAMES" = xULTRIX; } 2>/dev/null \ - && { RUNNING_KSH=true; export RUNNING_KSH; exec /bin/ksh $0 ${1+"$@"}; } -unset RUNNING_KSH - -test -f /bin/bsh && test -z "$RUNNING_BSH" \ - && { UNAMES=`uname -s`; test "x$UNAMES" = xAIX; } 2>/dev/null \ - && { RUNNING_BSH=true; export RUNNING_BSH; exec /bin/bsh $0 ${1+"$@"}; } -unset RUNNING_BSH - -# hack around a bug in zsh: -test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"' -export PATH - -v=`kpsewhich -var-value TEXMFSYSVAR` -c=`kpsewhich -var-value TEXMFSYSCONFIG` - -TEXMFVAR="$v" -TEXMFCONFIG="$c" -export TEXMFVAR TEXMFCONFIG - -exec updmap-setup-kanji ${1+"$@"} - |