diff options
author | Jonathan Kew <jfkthame@googlemail.com> | 2008-05-20 16:56:01 +0000 |
---|---|---|
committer | Jonathan Kew <jfkthame@googlemail.com> | 2008-05-20 16:56:01 +0000 |
commit | 9f0169e9cace9e8a9a261e3095ea97dac44f3d4a (patch) | |
tree | 218691a5508e87013c664b81360ec8adecb0c28f | |
parent | 124b279941631e0e68a11e71a7d39b23dba4f779 (diff) |
icu-xetex/data makefile patch for shells that don't like null "for" lists
git-svn-id: svn://tug.org/texlive/trunk@8254 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/libs/icu-xetex/data/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/libs/icu-xetex/data/Makefile.in b/Build/source/libs/icu-xetex/data/Makefile.in index 9abc94b5f0d..a939eda8514 100644 --- a/Build/source/libs/icu-xetex/data/Makefile.in +++ b/Build/source/libs/icu-xetex/data/Makefile.in @@ -454,7 +454,7 @@ $(COLLATION_INDEX_FILE): $(SRCLISTDEPS) echo "// Warning this file is automatically generated" > $@; \ echo "$(INDEX_NAME):table(nofallback) {" >> $@; \ echo " InstalledLocales {" >> $@; \ - for file in $(INSTALLED_COL_FILES); do \ + for file in ""$(INSTALLED_COL_FILES); do \ echo " $$file {\"\"}" >> $@; \ done; \ echo " }" >> $@; \ @@ -473,7 +473,7 @@ $(BRK_RES_INDEX_FILE): $(SRCLISTDEPS) echo "// Warning this file is automatically generated" > $@; \ echo "$(INDEX_NAME):table(nofallback) {" >> $@; \ echo " InstalledLocales {" >> $@; \ - for file in $(INSTALLED_BRS_FILES); do \ + for file in ""$(INSTALLED_BRS_FILES); do \ echo " $$file {\"\"}" >> $@; \ done; \ echo " }" >> $@; \ @@ -492,7 +492,7 @@ $(RBNF_INDEX_FILE): $(SRCLISTDEPS) echo "// Warning this file is automatically generated" > $@; \ echo "$(INDEX_NAME):table(nofallback) {" >> $@; \ echo " InstalledLocales {" >> $@; \ - for file in $(INSTALLED_RBNF_FILES); do \ + for file in ""$(INSTALLED_RBNF_FILES); do \ echo " $$file {\"\"}" >> $@; \ done; \ echo " }" >> $@; \ @@ -543,7 +543,7 @@ $(INDEX_FILE): $(SRCLISTDEPS) echo "$(INDEX_NAME):table(nofallback) {" >> $@; \ echo " CLDRVersion { \"$(GENRB_CLDR_VERSION)\" }" >> $@; \ echo " InstalledLocales {" >> $@; \ - for file in $(INSTALLED_RB_FILES); do \ + for file in ""$(INSTALLED_RB_FILES); do \ echo " $$file {\"\"}" >> $@; \ done; \ echo " }" >> $@; \ |