diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 1737e548cf..a6b848ec9d 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -1060,6 +1060,10 @@ class BBCooker: | |||
1060 | info_array = infos[fn] | 1060 | info_array = infos[fn] |
1061 | except KeyError: | 1061 | except KeyError: |
1062 | bb.fatal("%s does not exist" % fn) | 1062 | bb.fatal("%s does not exist" % fn) |
1063 | |||
1064 | if info_array[0].skipped: | ||
1065 | bb.fatal("%s was skipped: %s" % (fn, info_array[0].skipreason)) | ||
1066 | |||
1063 | self.status.add_from_recipeinfo(fn, info_array) | 1067 | self.status.add_from_recipeinfo(fn, info_array) |
1064 | 1068 | ||
1065 | # Tweak some variables | 1069 | # Tweak some variables |