mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
common.mk: download data and property files together
* common.mk (update-unicode-files): download data and property files together, not to download index html twice. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67593 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bd698312fa
commit
c576f14039
1 changed files with 5 additions and 10 deletions
15
common.mk
15
common.mk
|
@ -1346,10 +1346,11 @@ UNICODE_EMOJI_DOWNLOAD = \
|
|||
-p emoji/$(UNICODE_EMOJI_VERSION) \
|
||||
-e $(ALWAYS_UPDATE_UNICODE:yes=-a) unicode
|
||||
|
||||
$(UNICODE_PROPERTY_FILES): update-unicode-property-files
|
||||
update-unicode-property-files:
|
||||
$(ECHO) Downloading Unicode $(UNICODE_VERSION) property files...
|
||||
$(Q) $(UNICODE_DOWNLOAD) $(UNICODE_PROPERTY_FILES)
|
||||
$(UNICODE_FILES) $(UNICODE_PROPERTY_FILES): update-unicode-files
|
||||
update-unicode-files:
|
||||
$(ECHO) Downloading Unicode $(UNICODE_VERSION) data and property files...
|
||||
$(Q) $(MAKEDIRS) "$(UNICODE_SRC_DATA_DIR)"
|
||||
$(Q) $(UNICODE_DOWNLOAD) $(UNICODE_FILES) $(UNICODE_PROPERTY_FILES)
|
||||
|
||||
$(UNICODE_AUXILIARY_FILES): update-unicode-auxiliary-files
|
||||
update-unicode-auxiliary-files:
|
||||
|
@ -1363,12 +1364,6 @@ update-unicode-emoji-files:
|
|||
$(Q) $(MAKEDIRS) "$(UNICODE_SRC_EMOJI_DATA_DIR)"
|
||||
$(Q) $(UNICODE_EMOJI_DOWNLOAD) $(UNICODE_EMOJI_FILES)
|
||||
|
||||
$(UNICODE_FILES): update-unicode-files
|
||||
update-unicode-files:
|
||||
$(ECHO) Downloading Unicode $(UNICODE_VERSION) data files...
|
||||
$(Q) $(MAKEDIRS) "$(UNICODE_SRC_DATA_DIR)"
|
||||
$(Q) $(UNICODE_DOWNLOAD) $(UNICODE_FILES)
|
||||
|
||||
$(srcdir)/$(HAVE_BASERUBY:yes=lib/unicode_normalize/tables.rb): \
|
||||
$(UNICODE_SRC_DATA_DIR)/.unicode-tables.time
|
||||
|
||||
|
|
Loading…
Reference in a new issue