aboutsummaryrefslogtreecommitdiffstats
path: root/defs
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-04 05:10:26 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-04 05:10:26 +0000
commit6faf26689382c35d2fb8df90b096ea34c87b3ed5 (patch)
treee15815755216699ee240653e3038b5f0f45a32f9 /defs
parentf1fb989f1a17c63af1062ea402ed50f0d6cb4efa (diff)
downloadruby-6faf26689382c35d2fb8df90b096ea34c87b3ed5.tar.gz
gmake.mk: update normalization table
* defs/gmake.mk: try to update Unicode normalization tables file if Unicode data files exist. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67436 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'defs')
-rw-r--r--defs/gmake.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/defs/gmake.mk b/defs/gmake.mk
index 2db12cea69..eb9e35a446 100644
--- a/defs/gmake.mk
+++ b/defs/gmake.mk
@@ -185,6 +185,12 @@ $(MJIT_MIN_HEADER): $(mjit_min_headers) $(PREP)
endif
+ifneq ($(wildcard $(UNICODE_FILES) $(UNICODE_PROPERTY_FILES)),)
+.PHONY: $(UNICODE_SRC_DATA_DIR)/.unicode-tables.time
+$(UNICODE_SRC_DATA_DIR)/.unicode-tables.time: \
+ $(UNICODE_FILES) $(UNICODE_PROPERTY_FILES)
+endif
+
# GNU make treat the target as unmodified when its dependents get
# updated but it is not updated, while others may not.
$(srcdir)/revision.h: $(REVISION_H)