ruby-changes:44073
From: naruse <ko1@a...>
Date: Tue, 13 Sep 2016 06:04:37 +0900 (JST)
Subject: [ruby-changes:44073] naruse:r56146 (trunk): * common.mk (benchmark): fix lib path.
naruse 2016-09-13 06:04:25 +0900 (Tue, 13 Sep 2016) New Revision: 56146 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=56146 Log: * common.mk (benchmark): fix lib path. Modified files: trunk/ChangeLog trunk/common.mk Index: common.mk =================================================================== --- common.mk (revision 56145) +++ common.mk (revision 56146) @@ -963,17 +963,17 @@ OPTS = https://github.com/ruby/ruby/blob/trunk/common.mk#L963 # This command compares trunk and built-ruby and 2.2.2 benchmark: miniruby$(EXEEXT) PHONY $(BASERUBY) $(srcdir)/benchmark/driver.rb -v \ - --executables="$(COMPARE_RUBY) -I../../ruby/lib -I. -I.ext/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \ + --executables="$(COMPARE_RUBY) -Ilib -I. -I.ext/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \ --pattern='bm_' --directory=$(srcdir)/benchmark $(OPTS) benchmark-each: miniruby$(EXEEXT) PHONY $(BASERUBY) $(srcdir)/benchmark/driver.rb -v \ - --executables="$(COMPARE_RUBY) -I../../ruby/lib -I. -I.ext/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \ + --executables="$(COMPARE_RUBY) -Ilib -I. -I.ext/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \ --pattern=$(ITEM) --directory=$(srcdir)/benchmark $(OPTS) tbench: miniruby$(EXEEXT) PHONY $(BASERUBY) $(srcdir)/benchmark/driver.rb -v \ - --executables="$(COMPARE_RUBY) -I../../ruby/lib -I. -I.ext/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \ + --executables="$(COMPARE_RUBY) -Ilib -I. -I.ext/common --disable-gem; built-ruby::$(MINIRUBY) --disable-gem" \ --pattern='bmx_' --directory=$(srcdir)/benchmark $(OPTS) run.gdb: Index: ChangeLog =================================================================== --- ChangeLog (revision 56145) +++ ChangeLog (revision 56146) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Tue Sep 13 06:03:34 2016 NARUSE, Yui <naruse@r...> + + * common.mk (benchmark): fix lib path. + Tue Sep 13 00:39:47 2016 Aaron Patterson <tenderlove@r...> * class.c (singleton_class_of): Copy superclass serial number to -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/