texlive[54187] Build/source/utils/xindy: also have to stop echo \c

commits+karl at tug.org commits+karl at tug.org
Sun Mar 8 23:45:04 CET 2020


Revision: 54187
          http://tug.org/svn/texlive?view=revision&revision=54187
Author:   karl
Date:     2020-03-08 23:45:04 +0100 (Sun, 08 Mar 2020)
Log Message:
-----------
also have to stop echo \c interpretation

Modified Paths:
--------------
    trunk/Build/source/utils/xindy/TLpatches/patch-03-echo-f
    trunk/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.am
    trunk/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.in

Modified: trunk/Build/source/utils/xindy/TLpatches/patch-03-echo-f
===================================================================
--- trunk/Build/source/utils/xindy/TLpatches/patch-03-echo-f	2020-03-08 22:22:17 UTC (rev 54186)
+++ trunk/Build/source/utils/xindy/TLpatches/patch-03-echo-f	2020-03-08 22:45:04 UTC (rev 54187)
@@ -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}' >>$@

Modified: trunk/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.am
===================================================================
--- trunk/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.am	2020-03-08 22:22:17 UTC (rev 54186)
+++ trunk/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.am	2020-03-08 22:45:04 UTC (rev 54187)
@@ -246,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
@@ -275,9 +277,8 @@
 	echo '\section{Codepage latin9}' >>$@
 	for i in $(DOCS_LATIN9); do echo "\\input{$$i}" >>$@; done
 	echo '\ienc{cp1251}' >>$@
-# zsh, dash, others make echo '\f' output a form feed. Sigh.
 	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}' >>$@

Modified: trunk/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.in
===================================================================
--- trunk/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.in	2020-03-08 22:22:17 UTC (rev 54186)
+++ trunk/Build/source/utils/xindy/xindy-src/make-rules/alphabets/Makefile.in	2020-03-08 22:45:04 UTC (rev 54187)
@@ -1014,7 +1014,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
@@ -1043,9 +1045,8 @@
 	echo '\section{Codepage latin9}' >>$@
 	for i in $(DOCS_LATIN9); do echo "\\input{$$i}" >>$@; done
 	echo '\ienc{cp1251}' >>$@
-# zsh, dash, others make echo '\f' output a form feed. Sigh.
 	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}' >>$@



More information about the tex-live-commits mailing list.