[前][次][番号順一覧][スレッド一覧]

ruby-changes:35992

From: duerst <ko1@a...>
Date: Tue, 21 Oct 2014 17:32:57 +0900 (JST)
Subject: [ruby-changes:35992] duerst:r48073 (trunk): common.mk: Adding explicit creation of directory

duerst	2014-10-21 17:32:34 +0900 (Tue, 21 Oct 2014)

  New Revision: 48073

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=48073

  Log:
    common.mk: Adding explicit creation of directory
    enc/unicode/data because git doesn't handle empty
    directories.

  Modified files:
    trunk/ChangeLog
    trunk/common.mk
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 48072)
+++ ChangeLog	(revision 48073)
@@ -1,4 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
-Tue Oct 21 15:56:56 2014  Martin Duerst <duerst@i...>
+Tue Oct 21 17:32:32 2014  Martin Duerst <duerst@i...>
+
+	* common.mk: Adding explicit creation of directory
+	  enc/unicode/data because git doesn't handle empty
+	  directories.
+
+Tue Oct 21 17:12:12 2014  Martin Duerst <duerst@i...>
 
 	* lib/unicode_normalize/tables.rb: Committing to make version
 	  update easier and more predictable, and reducing compilation
Index: common.mk
===================================================================
--- common.mk	(revision 48072)
+++ common.mk	(revision 48073)
@@ -1097,6 +1097,7 @@ update-gems: PHONY https://github.com/ruby/ruby/blob/trunk/common.mk#L1097
 
 update-unicode: PHONY
 	$(ECHO) Downloading Unicode data files...
+	$(Q) $(MAKEDIRS) "$(srcdir)/enc/unicode/data"
 	$(Q) $(BASERUBY) -C "$(srcdir)/enc/unicode/data" \
 	    ../../../tool/downloader.rb -e $(ALWAYS_UPDATE_UNICODE:yes=-a) unicode \
 	    UnicodeData.txt CompositionExclusions.txt NormalizationTest.txt

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]