summaryrefslogtreecommitdiff
path: root/Master/bin/mips-irix/cef5pdflatex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/bin/mips-irix/cef5pdflatex')
-rwxr-xr-xMaster/bin/mips-irix/cef5pdflatex26
1 files changed, 0 insertions, 26 deletions
diff --git a/Master/bin/mips-irix/cef5pdflatex b/Master/bin/mips-irix/cef5pdflatex
deleted file mode 100755
index bd398e0240c..00000000000
--- a/Master/bin/mips-irix/cef5pdflatex
+++ /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
-
-cef5conv < "$tex" > "$aux" && eval pdflatex "$argv" "\$aux"
-
-# EOF