ruby-changes:54796
From: nobu <ko1@a...>
Date: Wed, 6 Feb 2019 09:11:14 +0900 (JST)
Subject: [ruby-changes:54796] nobu:r67014 (trunk): common.mk: allow brace expansion for benchmark targets
nobu 2019-02-06 09:11:04 +0900 (Wed, 06 Feb 2019) New Revision: 67014 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=67014 Log: common.mk: allow brace expansion for benchmark targets Modified files: trunk/common.mk Index: common.mk =================================================================== --- common.mk (revision 67013) +++ common.mk (revision 67014) @@ -1157,7 +1157,7 @@ bisect-ruby: PHONY https://github.com/ruby/ruby/blob/trunk/common.mk#L1157 COMPARE_RUBY = $(BASERUBY) BENCH_RUBY = $(MINIRUBY) ITEM = -ARGS = $$(find $(srcdir)/benchmark -maxdepth 1 -name '*$(ITEM)*.yml' -o -name '*$(ITEM)*.rb' | sort) +ARGS = $$(ls $(srcdir)/benchmark/*$(ITEM)*.{yml,rb} 2>/dev/null) OPTS = # You can pass several options through OPTS environment variable. -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/