From c53191a824c0804c9c9aa9dbcaec26ed8653c5db Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Mon, 6 Apr 2020 15:09:07 -0700 Subject: [PATCH] Version `UnicodeData.txt` filename (#35383) We've been downloading multiple different versions of `UnicodeData.txt` across different branches and trying to keep a consistent checksum. (cherry picked from commit 922891ccbfcd74a0d10eca4f197b976ec08c20fd) --- doc/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/Makefile b/doc/Makefile index 3fc092ccae4bd..0c934a87f62cd 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -24,11 +24,12 @@ help: DOCUMENTER_OPTIONS := linkcheck=$(linkcheck) doctest=$(doctest) buildroot=$(call cygpath_w,$(BUILDROOT)) \ texplatform=$(texplatform) -$(SRCCACHE)/UnicodeData.txt: +UNICODE_DATA_VERSION=9.0.0 +$(SRCCACHE)/UnicodeData-$(UNICODE_DATA_VERSION).txt: @mkdir -p "$(SRCCACHE)" - $(JLDOWNLOAD) "$@" http://www.unicode.org/Public/9.0.0/ucd/UnicodeData.txt + $(JLDOWNLOAD) "$@" http://www.unicode.org/Public/$(UNICODE_DATA_VERSION)/ucd/UnicodeData.txt -deps: $(SRCCACHE)/UnicodeData.txt +deps: $(SRCCACHE)/UnicodeData-$(UNICODE_DATA_VERSION).txt $(JLCHECKSUM) "$<" cp "$<" UnicodeData.txt