diff options
author | Karl Berry <karl@freefriends.org> | 2020-03-07 23:56:20 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-03-07 23:56:20 +0000 |
commit | 8773bfcf2afca7bebde07bff5bbfb173231bb6ea (patch) | |
tree | 7f8e34d77ef3cd2da4e53266e7f5901749b2278c /Build/source/utils/xindy/xindy-src/make-rules/alphabets | |
parent | 7a201df902af46299e1be728b291fda8ccc3cdd9 (diff) |
echo '\f' is not portable, use printf
git-svn-id: svn://tug.org/texlive/trunk@54168 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/xindy/xindy-src/make-rules/alphabets')
-rw-r--r-- | Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.am | 4 | ||||
-rw-r--r-- | Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.in | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.am b/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.am index ca8baaa0f26..63060b28839 100644 --- a/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.am +++ b/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.am @@ -2,6 +2,7 @@ ## autoconf/automake files. ## Or, call `automake Makefile' to create only Makefile.in. +## Copyright 2020 by Karl Berry <tex-live@tug.org> ## 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) 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. + printf '\%s{T2A}\n' "fenc" >>$@ echo '\chapter{Cyrillic scripts}' >>$@ echo '\section{Codepage 1251}' >>$@ for i in $(DOCS_CYR_1251); do echo "\\input{$$i}" >>$@; done diff --git a/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.in b/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.in index beb532c45b5..cd967ff6bd2 100644 --- a/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.in +++ b/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.in @@ -1043,7 +1043,8 @@ alphabets-inc.tex : $(DOCS) 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. + printf '\%s{T2A}\n' "fenc" >>$@ echo '\chapter{Cyrillic scripts}' >>$@ echo '\section{Codepage 1251}' >>$@ for i in $(DOCS_CYR_1251); do echo "\\input{$$i}" >>$@; done |