summaryrefslogtreecommitdiff
path: root/common.mk
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-06 00:11:04 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-06 00:11:04 +0000
commit4c0e21add7c87b70df27fbff81d8f192a467556d (patch)
treea2d8af5d65df2f61dc77986ab767ef1fc0bb80f6 /common.mk
parent173ad5202b29f350b61c5f64d952ff96bbf7c98d (diff)
common.mk: allow brace expansion for benchmark targets
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67014 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'common.mk')
-rw-r--r--common.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mk b/common.mk
index 11176f4ae9..564fcae69a 100644
--- a/common.mk
+++ b/common.mk
@@ -1157,7 +1157,7 @@ bisect-ruby: PHONY
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.