]> git.baikalelectronics.ru Git - kernel.git/commit
perf build: Fix check-headers.sh opts assignment
authorJiri Olsa <jolsa@kernel.org>
Wed, 21 Mar 2018 14:05:15 +0000 (15:05 +0100)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 27 Mar 2018 16:13:38 +0000 (13:13 -0300)
commitd584dd1f1d296dfc08d45117578ac3eb5850e0db
tree65fb896f745019927c665076e39cf219569c6bf6
parent57ac6469af18d2f82ffe3e0fa1e325481180e027
perf build: Fix check-headers.sh opts assignment

Currently the "opts" variable is not zero-ed and we keep on adding to
it, ending up with:

  $ check-headers.sh 2>&1
  + opts=' "-B"'
  + opts=' "-B" "-B"'
  + opts=' "-B" "-B" "-B"'
  + opts=' "-B" "-B" "-B" "-B"'
  + opts=' "-B" "-B" "-B" "-B" "-B"'
  + opts=' "-B" "-B" "-B" "-B" "-B" "-B"'

Fix this by initializing it in the check() function, right before
starting the loop.

Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20180321140515.2252-1-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/check-headers.sh