diff options
| author | duerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-09-28 02:14:16 +0000 |
|---|---|---|
| committer | duerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-09-28 02:14:16 +0000 |
| commit | 69cbd810faa7556dca3f1a9a32da752a34880102 (patch) | |
| tree | 71cd2f9c21e90d6a46f9f7b02da37a41424e1bf8 | |
| parent | 4d2aef1e4502aa7f97e4b3dc2d7f8bac3e95fa4b (diff) | |
common.mk: Created new target update-unicode to download
some Unicode data files.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47723 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | common.mk | 7 |
2 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Sun Sep 28 11:14:14 2014 Martin Duerst <duerst@it.aoyama.ac.jp> + + * common.mk: Created new target update-unicode to download + some Unicode data files. + Fri Sep 26 15:03:19 2014 Masaki Matsushita <glass.saga@gmail.com> * lib/uri/rfc3986_parser.rb: raise URI::InvalidURIError when @@ -1089,6 +1089,13 @@ update-gems: PHONY -e 'Downloader.download(:rubygems, gem, $$gemdir)' \ -- -gemdir=$(srcdir)/gems $(srcdir)/gems/bundled_gems +update-unicode: + $(Q) $(BASERUBY) -I$(srcdir)/tool -rdownloader \ + -e 'puts "Downloading Unicode data files..."' \ + -e 'Downloader.download(:unicode, "UnicodeData.txt", "$(srcdir)/enc/unicode/data")' \ + -e 'Downloader.download(:unicode, "CompositionExclusions.txt", "$(srcdir)/enc/unicode/data")' \ + -e 'Downloader.download(:unicode, "NormalizationTest.txt", "$(srcdir)/enc/unicode/data")' + info: info-program info-libruby_a info-libruby_so info-arch info-program: @echo PROGRAM=$(PROGRAM) |
