From a2879ac27ba1fefe5cc41d62e4e2974b2aeced66 Mon Sep 17 00:00:00 2001 From: naruse Date: Mon, 12 Sep 2016 21:04:25 +0000 Subject: [PATCH] * common.mk (benchmark): fix lib path. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56146 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ common.mk | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7eabe4460e..5b1a84a710 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Sep 13 06:03:34 2016 NARUSE, Yui + + * common.mk (benchmark): fix lib path. + Tue Sep 13 00:39:47 2016 Aaron Patterson * class.c (singleton_class_of): Copy superclass serial number to diff --git a/common.mk b/common.mk index c2a2d8fd90..c7b6751eda 100644 --- a/common.mk +++ b/common.mk @@ -963,17 +963,17 @@ OPTS = # 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: