From 87d769fc52592bc6ef90bd8287716ebbca4e1252 Mon Sep 17 00:00:00 2001 From: Patrick Vacek Date: Mon, 28 May 2018 13:18:49 +0200 Subject: find_packages.py: Add explanatory comment about list appending. --- scripts/find_packages.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'scripts/find_packages.py') 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(): 'dpkg', # BUILD_DEB only 'systemd'] # BUILD_SYSTEMD only + # Iterate through the list of recipes to check. Append any dependencies + # found that aren't already in the list. As long as we only add to the + # list, it should be safe. for recipe in recipes_to_check: depends = print_deps(tinfoil, abcd_file, recipe) for dep in depends: -- cgit v1.2.3-54-g00ecf