diff options
author | Tom Rini <trini@embeddedalley.com> | 2009-02-13 12:12:47 -0500 |
---|---|---|
committer | Tom Rini <trini@embeddedalley.com> | 2009-02-13 12:12:47 -0500 |
commit | fec216f25e71c0f2c82670f633b0f161d01cec0d (patch) | |
tree | 3e586abfbc25fe19cc6bd56b02a8255c77c27167 /classes/package_ipk.bbclass | |
parent | ebb3272a2da8074c30a8ec8a08256486fb9d7981 (diff) |
package_ipk.bbclass: Add missing : from a045dfacf6f2541e0f410d9d109581f181303756
Diffstat (limited to 'classes/package_ipk.bbclass')
-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 99f3793447..89d5071c09 100644 --- a/classes/package_ipk.bbclass +++ b/classes/package_ipk.bbclass @@ -245,7 +245,7 @@ python do_package_ipk () { rreplaces = (bb.data.getVar("RREPLACES", localdata, 1) or "").split() rconflicts = (bb.data.getVar("RCONFLICTS", localdata, 1) or "").split() - if not '-locale-' and not '-dbg' and not '-dev' in pkgname + if not '-locale-' and not '-dbg' and not '-dev' in pkgname: rdepends.append('%s-locale*' % pkgname) if rdepends: |