ruby-changes:55229
From: nobu <ko1@a...>
Date: Thu, 4 Apr 2019 14:10:31 +0900 (JST)
Subject: [ruby-changes:55229] nobu:r67436 (trunk): gmake.mk: update normalization table
nobu 2019-04-04 14:10:26 +0900 (Thu, 04 Apr 2019) New Revision: 67436 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=67436 Log: gmake.mk: update normalization table * defs/gmake.mk: try to update Unicode normalization tables file if Unicode data files exist. Modified files: trunk/defs/gmake.mk Index: defs/gmake.mk =================================================================== --- defs/gmake.mk (revision 67435) +++ defs/gmake.mk (revision 67436) @@ -185,6 +185,12 @@ $(MJIT_MIN_HEADER): $(mjit_min_headers) https://github.com/ruby/ruby/blob/trunk/defs/gmake.mk#L185 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) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/