summaryrefslogtreecommitdiff
path: root/Master/bin/i386-linux/texi2pdf
diff options
context:
space:
mode:
authorMartin Schröder <martin@oneiros.de>2008-03-15 18:07:39 +0000
committerMartin Schröder <martin@oneiros.de>2008-03-15 18:07:39 +0000
commit1a4cd03424ed7ecd19ffbed9abacca8069cc065b (patch)
tree90834ee95473018c4028ba2f31c26d3e7352189b /Master/bin/i386-linux/texi2pdf
parent6551b64647df0be3010eb5723b6e3a497d06b774 (diff)
Resurrect the last known-good version of i386-linux:
svn cp -r 6968 svn://username:password@tug.org/texlive/trunk/Master/bin/i386-linux . git-svn-id: svn://tug.org/texlive/trunk@6975 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/i386-linux/texi2pdf')
-rwxr-xr-xMaster/bin/i386-linux/texi2pdf19
1 files changed, 19 insertions, 0 deletions
diff --git a/Master/bin/i386-linux/texi2pdf b/Master/bin/i386-linux/texi2pdf
new file mode 100755
index 00000000000..492128325db
--- /dev/null
+++ b/Master/bin/i386-linux/texi2pdf
@@ -0,0 +1,19 @@
+#!/bin/sh
+# $Id: texi2pdf,v 1.1 2004/07/11 01:02:35 karl Exp $
+# Written by Thomas Esser. Public domain.
+# Execute texi2dvi --pdf.
+
+test -f /bin/sh5 && test -z "$RUNNING_SH5" \
+ && { UNAMES=`uname -s`; test "x$UNAMES" = xULTRIX; } 2>/dev/null \
+ && { RUNNING_SH5=true; export RUNNING_SH5; exec /bin/sh5 $0 ${1+"$@"}; }
+unset RUNNING_SH5
+
+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+"$@"}'='"$@"'
+
+texi2dvi --pdf ${1+"$@"}