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

ruby-changes:41688

From: duerst <ko1@a...>
Date: Sun, 7 Feb 2016 11:16:11 +0900 (JST)
Subject: [ruby-changes:41688] duerst:r53762 (trunk): * common.mk: using new option in recipe for enc/unicode/casefold.h

duerst	2016-02-07 11:16:12 +0900 (Sun, 07 Feb 2016)

  New Revision: 53762

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

  Log:
    * common.mk: using new option in recipe for enc/unicode/casefold.h
    * enc/unicode/case-folding.rb: Correctly specify argument to new option.
    (with Kimihito Matsui)

  Modified files:
    trunk/ChangeLog
    trunk/common.mk
    trunk/enc/unicode/case-folding.rb
Index: common.mk
===================================================================
--- common.mk	(revision 53761)
+++ common.mk	(revision 53762)
@@ -1051,7 +1051,7 @@ $(srcdir)/enc/unicode/casefold.h: $(srcd https://github.com/ruby/ruby/blob/trunk/common.mk#L1051
 		$(UNICODE_SRC_DATA_DIR)/CaseFolding.txt
 	$(Q) $(BASERUBY) $(srcdir)/enc/unicode/case-folding.rb \
 		--output-file=$(srcdir)/enc/unicode/casefold.h \
-		$(UNICODE_SRC_DATA_DIR)/CaseFolding.txt
+		--mapping-data-directory=$(UNICODE_SRC_DATA_DIR)
 
 download-extlibs:
 	$(Q) $(BASERUBY) -C $(srcdir) -w tool/extlibs.rb --download ext
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 53761)
+++ ChangeLog	(revision 53762)
@@ -1,3 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Sun Feb  7 11:16:00 2016  Martin Duerst  <duerst@i...>
+
+	* common.mk: using new option in recipe for enc/unicode/casefold.h
+
+	* enc/unicode/case-folding.rb: Correctly specify argument to new option.
+	(with Kimihito Matsui)
+
 Sun Feb  7 10:43:27 2016  Martin Duerst  <duerst@i...>
 
 	(this commit message applies to the previous commit)
Index: enc/unicode/case-folding.rb
===================================================================
--- enc/unicode/case-folding.rb	(revision 53761)
+++ enc/unicode/case-folding.rb	(revision 53762)
@@ -186,7 +186,7 @@ if $0 == __FILE__ https://github.com/ruby/ruby/blob/trunk/enc/unicode/case-folding.rb#L186
     opt.on("--output-file=FILE", "-o", "output to the FILE instead of STDOUT") {|output|
       dest = (output unless output == '-')
     }
-    opt.on('--mapping-data-directory', '-m', 'data directory of mapping files') { |directory|
+    opt.on('--mapping-data-directory=DIRECTORY', '-m', 'data DIRECTORY of mapping files') { |directory|
       mapping_directory = directory
     }
     opt.parse!

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

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