diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-06-08 16:15:11 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-06-08 17:08:12 +0200 |
commit | 6cffe52b773295dedda290be070fd60d39ebfef3 (patch) | |
tree | 9760f14b8c4490f15601409ff825afbd44fea9c0 /support/scripts/gen-manual-lists.py | |
parent | d3fa2bebc7f2e0f378d9fca68795c72cc44343ad (diff) | |
download | buildroot-6cffe52b773295dedda290be070fd60d39ebfef3.tar.gz buildroot-6cffe52b773295dedda290be070fd60d39ebfef3.zip |
support/scripts: document args to _is_package() in gen-manual-lists
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Samuel Martin <s.martin49@gmail.com>
Acked-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'support/scripts/gen-manual-lists.py')
-rw-r--r-- | support/scripts/gen-manual-lists.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/support/scripts/gen-manual-lists.py b/support/scripts/gen-manual-lists.py index aee2299c92..b33fcf03da 100644 --- a/support/scripts/gen-manual-lists.py +++ b/support/scripts/gen-manual-lists.py @@ -242,6 +242,8 @@ class Buildroot: """ Return True if the symbol is a package or a host package, otherwise False. + :param symbol: The symbol to check + """ if not self.re_pkg_prefix.match(symbol.get_name()): return False |