Remove eval

It's not needed.
This commit is contained in:
Siddhesh Poyarekar 2013-04-11 09:15:52 +05:30
parent abe7f530bf
commit 8da491f585
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-04-11 Siddhesh Poyarekar <siddhesh@redhat.com>
* Rules (bench): Remove eval.
2013-04-10 Siddhesh Poyarekar <siddhesh@redhat.com>
Roland McGrath <roland@hack.frob.com>
Ondrej Bilka <neleai@seznam.cz>

2
Rules
View File

@ -199,7 +199,7 @@ run-bench = $(test-wrapper-env) \
bench: $(binaries-bench)
for run in $^; do \
echo "Running $${run}"; \
eval $(run-bench) >> $(objpfx)bench.out-tmp; \
$(run-bench) >> $(objpfx)bench.out-tmp; \
done; \
if [ -f $(objpfx)bench.out ]; then \
mv -f $(objpfx)bench.out $(objpfx)bench.out.old; \