1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Revert "common.mk: allow brace expansion for benchmark targets"

This reverts commit 4c0e21add7
because we're not using /bin/bash.

See 11d3986d65 and
1b2b0e1f24 to know its context.
In short, 4c0e21add7 does not work on
Ubuntu.
This commit is contained in:
Takashi Kokubun 2019-06-03 22:00:14 +09:00
parent 1b2b0e1f24
commit 928377d2c5
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD

View file

@ -1165,7 +1165,7 @@ bisect-ruby: PHONY
COMPARE_RUBY = $(BASERUBY)
BENCH_RUBY = $(RUNRUBY)
ITEM =
ARGS = $$(ls $(srcdir)/benchmark/*$(ITEM)*.{yml,rb} 2>/dev/null)
ARGS = $$(find $(srcdir)/benchmark -maxdepth 1 -name '*$(ITEM)*.yml' -o -name '*$(ITEM)*.rb' | sort)
OPTS =
# You can pass several options through OPTS environment variable.