summaryrefslogtreecommitdiff
path: root/language/thai/thailatex/scripts/sync-babel
diff options
context:
space:
mode:
Diffstat (limited to 'language/thai/thailatex/scripts/sync-babel')
-rw-r--r--language/thai/thailatex/scripts/sync-babel23
1 files changed, 0 insertions, 23 deletions
diff --git a/language/thai/thailatex/scripts/sync-babel b/language/thai/thailatex/scripts/sync-babel
deleted file mode 100644
index 2f12dcf578..0000000000
--- a/language/thai/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
-