diff options
author | Karl Berry <karl@freefriends.org> | 2020-03-08 22:45:04 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-03-08 22:45:04 +0000 |
commit | 6ddc5921abc9edd3fc9ae9382d4dd4e730133578 (patch) | |
tree | dfbe39dab894a3dcca57bcf3f8bff95b9fc778b9 /Build/source/utils/xindy/TLpatches/patch-03-echo-f | |
parent | 88ad770f20a41d4c6506ad392e73cee9150614e5 (diff) |
also have to stop echo \c interpretation
git-svn-id: svn://tug.org/texlive/trunk@54187 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/xindy/TLpatches/patch-03-echo-f')
-rw-r--r-- | Build/source/utils/xindy/TLpatches/patch-03-echo-f | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/Build/source/utils/xindy/TLpatches/patch-03-echo-f b/Build/source/utils/xindy/TLpatches/patch-03-echo-f index b0a207027ba..33c9b4f050d 100644 --- a/Build/source/utils/xindy/TLpatches/patch-03-echo-f +++ b/Build/source/utils/xindy/TLpatches/patch-03-echo-f @@ -10,13 +10,25 @@ ## Copyright (C) 2004-2005 by Gour. ## ## This program is free software; you can redistribute it and/or -@@ -274,7 +275,8 @@ alphabets-inc.tex : $(DOCS) +@@ -245,7 +246,9 @@ + + alphabets-inc.tex : $(DOCS) + $(RM) $@ +- echo '\chapter{Latin scripts}' >>$@ ++# zsh, dash, others make echo '\f' output a form feed. Likewise they ++# interpret \c (no further output). Sigh. ++ printf '\%s{Latin scripts}' "chapter" >>$@ + echo '\ienc{cp1252}' >>$@ + echo '\section{Codepage 1252}' >>$@ + for i in $(DOCS_CP1252); do echo "\\input{$$i}" >>$@; done +@@ -274,8 +277,8 @@ echo '\section{Codepage latin9}' >>$@ for i in $(DOCS_LATIN9); do echo "\\input{$$i}" >>$@; done echo '\ienc{cp1251}' >>$@ - echo '\fenc{T2A}' >>$@ -+# zsh, dash, others make echo '\f' output a form feed. Sigh. +- echo '\chapter{Cyrillic scripts}' >>$@ + printf '\%s{T2A}\n' "fenc" >>$@ - echo '\chapter{Cyrillic scripts}' >>$@ ++ printf '\%s{Cyrillic scripts}' "chapter" >>$@ echo '\section{Codepage 1251}' >>$@ for i in $(DOCS_CYR_1251); do echo "\\input{$$i}" >>$@; done + # echo '\ienc{iso-8859-7}' >>$@ |