diff options
author | Patrick Vacek <patrickvacek@gmail.com> | 2018-05-28 13:18:49 +0200 |
---|---|---|
committer | Patrick Vacek <patrickvacek@gmail.com> | 2018-05-28 13:19:44 +0200 |
commit | 87d769fc52592bc6ef90bd8287716ebbca4e1252 (patch) | |
tree | 33f3bcb598242059391aa9d33bb283b19baef9ae /scripts | |
parent | 6fef541a1410493881689a4b2a60d1d6b49831cd (diff) | |
download | meta-updater-87d769fc52592bc6ef90bd8287716ebbca4e1252.tar.gz |
find_packages.py: Add explanatory comment about list appending.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/find_packages.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/find_packages.py b/scripts/find_packages.py index 6bad742..50453c1 100755 --- a/scripts/find_packages.py +++ b/scripts/find_packages.py | |||
@@ -110,6 +110,9 @@ def main(): | |||
110 | 'dpkg', # BUILD_DEB only | 110 | 'dpkg', # BUILD_DEB only |
111 | 'systemd'] # BUILD_SYSTEMD only | 111 | 'systemd'] # BUILD_SYSTEMD only |
112 | 112 | ||
113 | # Iterate through the list of recipes to check. Append any dependencies | ||
114 | # found that aren't already in the list. As long as we only add to the | ||
115 | # list, it should be safe. | ||
113 | for recipe in recipes_to_check: | 116 | for recipe in recipes_to_check: |
114 | depends = print_deps(tinfoil, abcd_file, recipe) | 117 | depends = print_deps(tinfoil, abcd_file, recipe) |
115 | for dep in depends: | 118 | for dep in depends: |