summaryrefslogtreecommitdiff
path: root/Master/bin/mips-irix/bg5pdflatex
diff options
context:
space:
mode:
authorOlaf Weber <olaf@infovore.xs4all.nl>2007-01-01 11:48:25 +0000
committerOlaf Weber <olaf@infovore.xs4all.nl>2007-01-01 11:48:25 +0000
commit90afab3aa815f233aaf0d515eb8a886fabbc635b (patch)
treecb257b06ff7c7b96a42078776db5fb5d09fedc42 /Master/bin/mips-irix/bg5pdflatex
parent99925069d9580057dbe0776fd86c63181184329c (diff)
Update of mips-irix binaries part 1: removal of old binaries.
git-svn-id: svn://tug.org/texlive/trunk@3087 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/mips-irix/bg5pdflatex')
-rwxr-xr-xMaster/bin/mips-irix/bg5pdflatex26
1 files changed, 0 insertions, 26 deletions
diff --git a/Master/bin/mips-irix/bg5pdflatex b/Master/bin/mips-irix/bg5pdflatex
deleted file mode 100755
index f65d86d5417..00000000000
--- a/Master/bin/mips-irix/bg5pdflatex
+++ /dev/null
@@ -1,26 +0,0 @@
-#! /bin/sh
-
-n=1
-argv=
-
-# get last argument
-while test 1 -lt $#; do
- eval argv$n=\$1
- argv="$argv \"\$argv$n\""
- n=`expr $n + 1`
- shift
-done
-
-# replace extension with .cjk or append .cjk if there is no extension
-tex=$1
-case $tex in
-""|*.cjk)
- echo >&2 "Usage: $0 [options] pdflatex-file"
- exit 1;;
-*)
- aux=`expr "X$tex" : 'X\(.*\)\.[^/]*$' \| "X$tex" : 'X\(.*\)'`.cjk;;
-esac
-
-bg5conv < "$tex" > "$aux" && eval pdflatex "$argv" "\$aux"
-
-# EOF