aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/profiling/microbenchmarks
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-03-29 01:54:16 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-03-29 01:54:16 -0700
commitfda22624bae8b5911ebdc35d2c938476d92e933e (patch)
treeb21c89175b52633dca8acbcaf3d169f5edb8b146 /tools/profiling/microbenchmarks
parentd1d055a1bf149b0e971dcc3290a2ccfc346217ee (diff)
Fix building
Diffstat (limited to 'tools/profiling/microbenchmarks')
-rwxr-xr-xtools/profiling/microbenchmarks/bm_diff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/profiling/microbenchmarks/bm_diff.py b/tools/profiling/microbenchmarks/bm_diff.py
index 7281bd77e7..b74a857ade 100755
--- a/tools/profiling/microbenchmarks/bm_diff.py
+++ b/tools/profiling/microbenchmarks/bm_diff.py
@@ -96,7 +96,7 @@ def avg(lst):
return sum / n
def make_cmd(cfg):
- make = ['make'] + args.benchmarks + [
+ return ['make'] + args.benchmarks + [
'CONFIG=%s' % cfg, '-j', '%d' % multiprocessing.cpu_count()]
def build():