diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2017-01-31 13:50:26 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-31 15:28:40 +0000 |
commit | 15a97dea65778e38b77a8787004cf30da716fb59 (patch) | |
tree | 1a050ccc374e44a30365e000c3aa22e5c4478dec | |
parent | 5b64eda8a1031f29540126d1fc70bc44ee8a7695 (diff) | |
download | poky-15a97dea65778e38b77a8787004cf30da716fb59.tar.gz |
verify-bashisms: fix typo
Variable was renamed, it's now called "output".
(From OE-Core rev: c3d125b4132e5a706f6265a5bcaedafbe8e5355f)
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/verify-bashisms | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/verify-bashisms b/scripts/verify-bashisms index a8f761d4c5..1bda60cbd9 100755 --- a/scripts/verify-bashisms +++ b/scripts/verify-bashisms | |||
@@ -41,7 +41,7 @@ def process(recipe, function, script): | |||
41 | 41 | ||
42 | # Replace the temporary filename with the function and split it | 42 | # Replace the temporary filename with the function and split it |
43 | output = e.output.replace(fn.name, function).splitlines() | 43 | output = e.output.replace(fn.name, function).splitlines() |
44 | if len(results) % 2 != 0: | 44 | if len(output) % 2 != 0: |
45 | print("Unexpected output from checkbashism: %s" % str(output)) | 45 | print("Unexpected output from checkbashism: %s" % str(output)) |
46 | return | 46 | return |
47 | 47 | ||