diff options
Diffstat (limited to 'meta/classes/update-alternatives.bbclass')
-rw-r--r-- | meta/classes/update-alternatives.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/update-alternatives.bbclass b/meta/classes/update-alternatives.bbclass index 45f4291aa2..2cadaf79e3 100644 --- a/meta/classes/update-alternatives.bbclass +++ b/meta/classes/update-alternatives.bbclass | |||
@@ -128,9 +128,9 @@ def update_alternatives_after_parse(d): | |||
128 | alt_path = d.getVar('ALTERNATIVE_PATH', True) | 128 | alt_path = d.getVar('ALTERNATIVE_PATH', True) |
129 | alt_link = d.getVar('ALTERNATIVE_LINK', True) or ("%s/%s" % (d.getVar('bindir', True), alt_name)) | 129 | alt_link = d.getVar('ALTERNATIVE_LINK', True) or ("%s/%s" % (d.getVar('bindir', True), alt_name)) |
130 | if alt_name == None: | 130 | if alt_name == None: |
131 | raise bb.build.build.FuncFailed, "%s inherits update-alternatives but doesn't set ALTERNATIVE_NAME" % d.getVar('FILE') | 131 | raise bb.build.build.FuncFailed("%s inherits update-alternatives but doesn't set ALTERNATIVE_NAME" % d.getVar('FILE')) |
132 | if alt_path == None: | 132 | if alt_path == None: |
133 | raise bb.build.build.FuncFailed, "%s inherits update-alternatives but doesn't set ALTERNATIVE_PATH" % d.getVar('FILE') | 133 | raise bb.build.build.FuncFailed("%s inherits update-alternatives but doesn't set ALTERNATIVE_PATH" % d.getVar('FILE')) |
134 | 134 | ||
135 | alternative = d.getVar('ALTERNATIVE_%s' % pn, True) or "" | 135 | alternative = d.getVar('ALTERNATIVE_%s' % pn, True) or "" |
136 | alternative += " " + alt_name | 136 | alternative += " " + alt_name |