summaryrefslogtreecommitdiff
path: root/Build/source
diff options
context:
space:
mode:
authorVladimir Volovich <vvv@vsu.ru>2008-03-25 13:23:27 +0000
committerVladimir Volovich <vvv@vsu.ru>2008-03-25 13:23:27 +0000
commit6dad4217eda2bc132f4db3a5434fbbd80d4a0128 (patch)
treeee4fa7a2ae38f74891bfde49189fafccc06f164f /Build/source
parent29dfcfdc03a117fc7738460da50de6509180ff55 (diff)
bugfix in make-rules:
%latin5.pl : %utf8.pl.in sed -e 's/@u{\([^}]*\)}//g;' <$< | \ - iconv -f UTF-8 -t ISO8859-5 >$@ + iconv -f UTF-8 -t ISO-8859-9 >$@ latin5 is not ISO-8859-5 (which is a cyrillic encoding) but ISO-8859-9, so this make rule was failing with invalid characters. it was noticed after a change from "/usr/bin/perl" to "/usr/bin/env perl" which touched the timestamps so the script got regenerated. git-svn-id: svn://tug.org/texlive/trunk@7150 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r--Build/source/utils/xindy/make-rules/alphabets/Makefile.am2
-rw-r--r--Build/source/utils/xindy/make-rules/alphabets/Makefile.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/utils/xindy/make-rules/alphabets/Makefile.am b/Build/source/utils/xindy/make-rules/alphabets/Makefile.am
index 580bd5548de..3fd82068e45 100644
--- a/Build/source/utils/xindy/make-rules/alphabets/Makefile.am
+++ b/Build/source/utils/xindy/make-rules/alphabets/Makefile.am
@@ -763,7 +763,7 @@ romanian/latin2.pl : romanian/utf8.pl
%latin5.pl : %utf8.pl.in
sed -e 's/@u{\([^}]*\)}//g;' <$< | \
- iconv -f UTF-8 -t ISO8859-5 >$@
+ iconv -f UTF-8 -t ISO-8859-9 >$@
%latin9.pl : %utf8.pl.in
sed -e 's/@u{\([^}]*\)}//g;s/@9{\([^}]*\)}/\1/g;' <$< | \
diff --git a/Build/source/utils/xindy/make-rules/alphabets/Makefile.in b/Build/source/utils/xindy/make-rules/alphabets/Makefile.in
index 2060f20b0a8..f655bcd22d2 100644
--- a/Build/source/utils/xindy/make-rules/alphabets/Makefile.in
+++ b/Build/source/utils/xindy/make-rules/alphabets/Makefile.in
@@ -2321,7 +2321,7 @@ romanian/latin2.pl : romanian/utf8.pl
%latin5.pl : %utf8.pl.in
sed -e 's/@u{\([^}]*\)}//g;' <$< | \
- iconv -f UTF-8 -t ISO8859-5 >$@
+ iconv -f UTF-8 -t ISO-8859-9 >$@
%latin9.pl : %utf8.pl.in
sed -e 's/@u{\([^}]*\)}//g;s/@9{\([^}]*\)}/\1/g;' <$< | \