diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-09 17:29:53 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-10 11:37:11 +0000 |
commit | 1ab3d1b5489eeaff78add14f4886269c690a3d46 (patch) | |
tree | 633998ee901d66f077f8d936a167b3a90da482ef /meta/classes/mime.bbclass | |
parent | f6998758283a029cc10c767e1b6d7ea7cd3f6714 (diff) | |
download | poky-1ab3d1b5489eeaff78add14f4886269c690a3d46.tar.gz |
mime.bbclass: No need to import os.path, it then breaks the os module
(From OE-Core rev: b4457a9605988feecadfd49df22ef57245c4cd86)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/mime.bbclass')
-rw-r--r-- | meta/classes/mime.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/mime.bbclass b/meta/classes/mime.bbclass index 2d17d9cd0d..4a2ce8bd2a 100644 --- a/meta/classes/mime.bbclass +++ b/meta/classes/mime.bbclass | |||
@@ -27,7 +27,7 @@ fi | |||
27 | } | 27 | } |
28 | 28 | ||
29 | python populate_packages_append () { | 29 | python populate_packages_append () { |
30 | import os.path, re | 30 | import re |
31 | packages = d.getVar('PACKAGES', True).split() | 31 | packages = d.getVar('PACKAGES', True).split() |
32 | pkgdest = d.getVar('PKGDEST', True) | 32 | pkgdest = d.getVar('PKGDEST', True) |
33 | 33 | ||