aboutsummaryrefslogtreecommitdiffstats
path: root/common.mk
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-22 17:33:02 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-22 17:33:02 +0000
commit052c85da9643fcfb4e5f43e9ff688dcec7d3f7e2 (patch)
tree7fdc6d2344445ae5f8affd548e164cee1852bec9 /common.mk
parentff97cb0c2e6fb8de7334a9350954d95e82480d8b (diff)
downloadruby-052c85da9643fcfb4e5f43e9ff688dcec7d3f7e2.tar.gz
common.mk: update unicode files every times
* common.mk (update-unicode): invert dependency to run every times. [ruby-core:65842] [Bug #10415] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48101 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'common.mk')
-rw-r--r--common.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.mk b/common.mk
index 781dd8db17..d37a464486 100644
--- a/common.mk
+++ b/common.mk
@@ -1106,9 +1106,9 @@ UNICODE_FILES = $(srcdir)/enc/unicode/data/UnicodeData.txt \
$(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" \