diff options
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/package_manager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py index f5cd7454d7..2835c1ddf8 100644 --- a/meta/lib/oe/package_manager.py +++ b/meta/lib/oe/package_manager.py | |||
@@ -440,7 +440,7 @@ class PackageManager(object, metaclass=ABCMeta): | |||
440 | continue | 440 | continue |
441 | 441 | ||
442 | if populate_sdk == 'host' and self.d.getVar('SDK_OS') == 'mingw32': | 442 | if populate_sdk == 'host' and self.d.getVar('SDK_OS') == 'mingw32': |
443 | bb.warn("The postinstall intercept hook '%s' could not be executed due to missing wine support, details in %s/log.do_%s" | 443 | bb.note("The postinstall intercept hook '%s' could not be executed due to missing wine support, details in %s/log.do_%s" |
444 | % (script, self.d.getVar('T'), self.d.getVar('BB_CURRENTTASK'))) | 444 | % (script, self.d.getVar('T'), self.d.getVar('BB_CURRENTTASK'))) |
445 | continue | 445 | continue |
446 | 446 | ||
@@ -455,7 +455,7 @@ class PackageManager(object, metaclass=ABCMeta): | |||
455 | bb.fatal("The postinstall intercept hook '%s' failed, details in %s/log.do_%s" % (script, self.d.getVar('T'), self.d.getVar('BB_CURRENTTASK'))) | 455 | bb.fatal("The postinstall intercept hook '%s' failed, details in %s/log.do_%s" % (script, self.d.getVar('T'), self.d.getVar('BB_CURRENTTASK'))) |
456 | elif populate_sdk == 'target': | 456 | elif populate_sdk == 'target': |
457 | if "qemuwrapper: qemu usermode is not supported" in e.output.decode("utf-8"): | 457 | if "qemuwrapper: qemu usermode is not supported" in e.output.decode("utf-8"): |
458 | bb.warn("The postinstall intercept hook '%s' could not be executed due to missing qemu usermode support, details in %s/log.do_%s" | 458 | bb.note("The postinstall intercept hook '%s' could not be executed due to missing qemu usermode support, details in %s/log.do_%s" |
459 | % (script, self.d.getVar('T'), self.d.getVar('BB_CURRENTTASK'))) | 459 | % (script, self.d.getVar('T'), self.d.getVar('BB_CURRENTTASK'))) |
460 | else: | 460 | else: |
461 | bb.fatal("The postinstall intercept hook '%s' failed, details in %s/log.do_%s" % (script, self.d.getVar('T'), self.d.getVar('BB_CURRENTTASK'))) | 461 | bb.fatal("The postinstall intercept hook '%s' failed, details in %s/log.do_%s" % (script, self.d.getVar('T'), self.d.getVar('BB_CURRENTTASK'))) |