diff options
Diffstat (limited to 'Master/texmf-dist/source/latex/thailatex/scripts/sync-babel')
-rw-r--r-- | Master/texmf-dist/source/latex/thailatex/scripts/sync-babel | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Master/texmf-dist/source/latex/thailatex/scripts/sync-babel b/Master/texmf-dist/source/latex/thailatex/scripts/sync-babel deleted file mode 100644 index 2f12dcf5788..00000000000 --- a/Master/texmf-dist/source/latex/thailatex/scripts/sync-babel +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# Patch/unpatch thailatex babel.sty with that of tetex -# Written by Theppitak Karoonboonyanan <thep@linux.thai.net> -# License: GPL - -BABELSTY=`kpsewhich babel.sty` - -if [ "x$BABELSTY" = "x" ]; then - echo "Cannot find babel.sty to update" - exit 1 -fi - -echo "Updating $BABELSTY" - -sed -i -e '/thai.ldf/d' $BABELSTY - -THAILDF=`kpsewhich thai.ldf` - -if [ "x$THAILDF" != "x" ]; then - sed -i -e '/turkish/i\ -\\DeclareOption{thai}{\\input{thai.ldf}}' $BABELSTY -fi - |