ruby-changes:46002
From: nobu <ko1@a...>
Date: Fri, 24 Mar 2017 11:44:25 +0900 (JST)
Subject: [ruby-changes:46002] nobu:r58073 (trunk): common.mk: touch-unicode-files
nobu 2017-03-24 11:44:21 +0900 (Fri, 24 Mar 2017) New Revision: 58073 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=58073 Log: common.mk: touch-unicode-files Modified files: trunk/.travis.yml trunk/appveyor.yml trunk/common.mk Index: appveyor.yml =================================================================== --- appveyor.yml (revision 58072) +++ appveyor.yml (revision 58073) @@ -34,7 +34,7 @@ build_script: https://github.com/ruby/ruby/blob/trunk/appveyor.yml#L34 - mkdir %Platform%-mswin_%vs% - cd %Platform%-mswin_%vs% - ..\win32\configure.bat --without-ext=+,dbm,gdbm,readline --with-opt-dir=/usr/local --with-openssl-dir=%OPENSSL_DIR:\=/% - - nmake -t .unicode-tables.time + - nmake -l touch-unicode-files - nmake -l up - nmake -l - nmake install-nodoc Index: .travis.yml =================================================================== --- .travis.yml (revision 58072) +++ .travis.yml (revision 58073) @@ -43,7 +43,7 @@ before_script: https://github.com/ruby/ruby/blob/trunk/.travis.yml#L43 - "make reconfig" - "cp -pr config.status .ext/include config_2nd" - "diff -ru config_1st config_2nd" - - "make -t .unicode-tables.time" + - "make touch-unicode-files" - "make after-update BASERUBY=ruby" - "make -s $JOBS" - "make update-rubyspec" Index: common.mk =================================================================== --- common.mk (revision 58072) +++ common.mk (revision 58073) @@ -744,7 +744,7 @@ $(ENC_MK): $(srcdir)/enc/make_encmake.rb https://github.com/ruby/ruby/blob/trunk/common.mk#L744 .PHONY: check test test-all btest btest-ruby test-basic test-knownbug .PHONY: run runruby parse benchmark benchmark-each tbench gdb gdb-ruby .PHONY: update-mspec update-rubyspec test-rubyspec -.PHONY: .unicode-tables.time +.PHONY: touch-unicode-files PHONY: @@ -1155,7 +1155,9 @@ $(srcdir)/$(HAVE_BASERUBY:yes=lib/unicod https://github.com/ruby/ruby/blob/trunk/common.mk#L1155 $(UNICODE_SRC_DATA_DIR)/$(ALWAYS_UPDATE_UNICODE:yes=.unicode-tables.time): \ $(UNICODE_FILES) $(UNICODE_PROPERTY_FILES) -.unicode-tables.time: $(UNICODE_SRC_DATA_DIR)/.unicode-tables.time +touch-unicode-files: + $(MAKEDIRS) $(UNICODE_SRC_DATA_DIR) + touch $(UNICODE_SRC_DATA_DIR)/.unicode-tables.time $(UNICODE_DATA_HEADERS) $(UNICODE_SRC_DATA_DIR)/.unicode-tables.time: $(srcdir)/tool/generic_erb.rb \ $(srcdir)/template/unicode_norm_gen.tmpl \ -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/