ruby-changes:36020
From: nobu <ko1@a...>
Date: Thu, 23 Oct 2014 02:33:09 +0900 (JST)
Subject: [ruby-changes:36020] nobu:r48101 (trunk): common.mk: update unicode files every times
nobu 2014-10-23 02:33:02 +0900 (Thu, 23 Oct 2014) New Revision: 48101 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=48101 Log: common.mk: update unicode files every times * common.mk (update-unicode): invert dependency to run every times. [ruby-core:65842] [Bug #10415] Modified files: trunk/ChangeLog trunk/common.mk Index: ChangeLog =================================================================== --- ChangeLog (revision 48100) +++ ChangeLog (revision 48101) @@ -1,4 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 -Thu Oct 23 02:25:32 2014 Nobuyoshi Nakada <nobu@r...> +Thu Oct 23 02:33:01 2014 Nobuyoshi Nakada <nobu@r...> + + * common.mk (update-unicode): invert dependency to run every times. + [ruby-core:65842] [Bug #10415] * common.mk (after-update): update files under source tree. [ruby-core:65840] [Bug #10414] Index: common.mk =================================================================== --- common.mk (revision 48100) +++ common.mk (revision 48101) @@ -1106,9 +1106,9 @@ UNICODE_FILES = $(srcdir)/enc/unicode/da https://github.com/ruby/ruby/blob/trunk/common.mk#L1106 $(srcdir)/enc/unicode/data/CompositionExclusions.txt \ $(srcdir)/enc/unicode/data/NormalizationTest.txt -update-unicode: $(UNICODE_FILES) PHONY +$(UNICODE_FILES): update-unicode -$(UNICODE_FILES): +update-unicode: PHONY $(ECHO) Downloading Unicode data files... $(Q) $(MAKEDIRS) "$(srcdir)/enc/unicode/data" $(Q) $(BASERUBY) -C "$(srcdir)/enc/unicode/data" \ -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/