diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2017-01-31 13:50:27 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-31 15:28:40 +0000 |
commit | 83469f229dc30af53e593713ab2229a288ace662 (patch) | |
tree | 77b768914242873846b91590eecaf5b9e163c8a6 | |
parent | 15a97dea65778e38b77a8787004cf30da716fb59 (diff) | |
download | poky-83469f229dc30af53e593713ab2229a288ace662.tar.gz |
verify-bashisms: point out where to get checkbashisms.pl
The current SourceForge project seems to be unmaintained (last release
2.0.0.2 from 2015) while the copy used by Debian is quite active (last
commit 2016-09-30).
Ideally, checkbashisms.pl should get installed automatically via a
recipe, but for now at least provide the link for manual installation.
(From OE-Core rev: 65e74348b4ed40b24671776410d2a579dcc7abab)
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 1bda60cbd9..28795f4cc7 100755 --- a/scripts/verify-bashisms +++ b/scripts/verify-bashisms | |||
@@ -68,7 +68,7 @@ def get_tinfoil(): | |||
68 | if __name__=='__main__': | 68 | if __name__=='__main__': |
69 | import shutil | 69 | import shutil |
70 | if shutil.which("checkbashisms.pl") is None: | 70 | if shutil.which("checkbashisms.pl") is None: |
71 | print("Cannot find checkbashisms.pl on $PATH") | 71 | print("Cannot find checkbashisms.pl on $PATH, get it from https://anonscm.debian.org/cgit/collab-maint/devscripts.git/plain/scripts/checkbashisms.pl") |
72 | sys.exit(1) | 72 | sys.exit(1) |
73 | 73 | ||
74 | tinfoil = get_tinfoil() | 74 | tinfoil = get_tinfoil() |