summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/find_packages.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/find_packages.py b/scripts/find_packages.py
index 4b1680b..b297d7d 100755
--- a/scripts/find_packages.py
+++ b/scripts/find_packages.py
@@ -15,7 +15,11 @@ def print_deps(tinfoil, abcd_file, rn):
15 info = tinfoil.get_recipe_info(rn) 15 info = tinfoil.get_recipe_info(rn)
16 except: 16 except:
17 # fails on hostperl-runtime-native, virtual/libintl-native, grep-native, virtual/libiconv-native 17 # fails on hostperl-runtime-native, virtual/libintl-native, grep-native, virtual/libiconv-native
18 print('failing on: %s' % rn) 18 print('Failed to get recipe info for: %s' % rn)
19 return []
20 if not info:
21 # fails on the above and virtual/crypt-native
22 print('No recipe info found for: %s' % rn)
19 return [] 23 return []
20 append_files = tinfoil.get_file_appends(info.fn) 24 append_files = tinfoil.get_file_appends(info.fn)
21 appends = True 25 appends = True