diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-06-23 14:48:42 -0700 |
---|---|---|
committer | Chris Larson <chris_larson@mentor.com> | 2010-06-24 10:15:07 -0700 |
commit | 3950ba031a640a308c14d128ff96ad7d4027903e (patch) | |
tree | 3802266fe05d901fc8ac683aca93fa9616e16fd7 /classes | |
parent | 00f9b91c338db545fc58653ab9e7f6c307fff48e (diff) |
package_ipk: Fix syntax error - incorrect usage of bb.data.expand
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'classes')
-rw-r--r-- | classes/package_ipk.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/package_ipk.bbclass b/classes/package_ipk.bbclass index 435d59fb06..cd01496573 100644 --- a/classes/package_ipk.bbclass +++ b/classes/package_ipk.bbclass @@ -196,7 +196,7 @@ python do_package_ipk () { except ValueError: pass if not g and bb.data.getVar('ALLOW_EMPTY', localdata) != "1": - bb.note("Not creating empty archive for %s-%s" % (pkg, bb.data.expand('${PV}-${PR}${DISTRO_PR}', localdata, True))) + bb.note("Not creating empty archive for %s-%s" % (pkg, bb.data.expand('${PV}-${PR}${DISTRO_PR}', localdata))) bb.utils.unlockfile(lf) continue |