summaryrefslogtreecommitdiff
path: root/yocto-poky/meta/classes/update-alternatives.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'yocto-poky/meta/classes/update-alternatives.bbclass')
-rw-r--r--yocto-poky/meta/classes/update-alternatives.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/yocto-poky/meta/classes/update-alternatives.bbclass b/yocto-poky/meta/classes/update-alternatives.bbclass
index a3c1657fa..70a818572 100644
--- a/yocto-poky/meta/classes/update-alternatives.bbclass
+++ b/yocto-poky/meta/classes/update-alternatives.bbclass
@@ -61,7 +61,7 @@
ALTERNATIVE_PRIORITY = "10"
# We need special processing for vardeps because it can not work on
-# modified flag values. So we agregate the flags into a new variable
+# modified flag values. So we aggregate the flags into a new variable
# and include that vairable in the set.
UPDALTVARS = "ALTERNATIVE ALTERNATIVE_LINK_NAME ALTERNATIVE_TARGET ALTERNATIVE_PRIORITY"
@@ -252,7 +252,7 @@ python package_do_filedeps_append () {
alt_target = alt_target or d.getVar('ALTERNATIVE_TARGET_%s' % pkg, True) or d.getVar('ALTERNATIVE_TARGET', True) or alt_link
if alt_link == alt_target:
- bb.warn('alt_link == alt_target: %s == %s' % (alt_link, alt_target))
+ bb.warn('%s: alt_link == alt_target: %s == %s' % (pn, alt_link, alt_target))
alt_target = '%s.%s' % (alt_target, pn)
if not os.path.lexists('%s/%s/%s' % (pkgdest, pkg, alt_target)):