summaryrefslogtreecommitdiff
path: root/common.mk
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-17 23:35:35 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-18 00:34:12 +0900
commit7bb0a7d7cba7bbeb03d531c13ccf73b6d4e688f6 (patch)
tree64dc0aef8e8e01135910a49cea82f8410266ca67 /common.mk
parent74ca6b88dd9673d2a47ce4bbfd9214dcea5ee366 (diff)
Prefer exact ITEM to benchmark
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 6b4a0b00f1..06584c270d 100644
--- a/common.mk
+++ b/common.mk
@@ -1171,7 +1171,7 @@ bisect-ruby: PHONY
COMPARE_RUBY = $(BASERUBY)
BENCH_RUBY = $(RUNRUBY)
ITEM =
-ARGS = $$(find $(srcdir)/benchmark -maxdepth 1 -name '*$(ITEM)*.yml' -o -name '*$(ITEM)*.rb' | sort)
+ARGS = $$(find $(srcdir)/benchmark -maxdepth 1 -name '$(ITEM)' -o -name '*$(ITEM)*.yml' -o -name '*$(ITEM)*.rb' | sort)
OPTS =
# See benchmark/README.md for details.