From d5f8c90dd4acc0f84ac83d35b40582d2d389873d Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sat, 12 Dec 2009 02:11:58 +0000 Subject: [PATCH] tools: find executables in current directory when running benchmark --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0b6c832e3..83e269705 100644 --- a/Makefile +++ b/Makefile @@ -176,7 +176,7 @@ fullcabaltest: setversion # run performance benchmarks and save results in profs/. # Requires some commands defined in bench.tests and some BENCHEXES defined above. benchmark: sampleledgers bench.tests tools/bench - tools/bench -fbench.tests $(BENCHEXES) | tee profs/$(TIME).bench + PATH=.:$(PATH) tools/bench -fbench.tests $(BENCHEXES) | tee profs/$(TIME).bench @rm -f benchresults.* @(cd profs; rm -f latest.bench; ln -s $(TIME).bench latest.bench)