diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-08 22:32:43 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-13 12:15:28 +0000 |
commit | c54117458a19d05d404ec00907a8f3e9c73a416b (patch) | |
tree | 6cc5695742a1198668b022b35c8b2a456c4f3f4f /meta/classes/distutils-base.bbclass | |
parent | 80d55bbd6ea2ff93510f3b87ea97322b0b02eaa8 (diff) | |
download | poky-c54117458a19d05d404ec00907a8f3e9c73a416b.tar.gz |
classes: Remove and sanitise import statements
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes/distutils-base.bbclass')
-rw-r--r-- | meta/classes/distutils-base.bbclass | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/classes/distutils-base.bbclass b/meta/classes/distutils-base.bbclass index 5150be76b9..5d6d9981e0 100644 --- a/meta/classes/distutils-base.bbclass +++ b/meta/classes/distutils-base.bbclass | |||
@@ -3,7 +3,6 @@ DEPENDS += "${@["python-native python", ""][(bb.data.getVar('PACKAGES', d, 1) = | |||
3 | RDEPENDS += "python-core" | 3 | RDEPENDS += "python-core" |
4 | 4 | ||
5 | def python_dir(d): | 5 | def python_dir(d): |
6 | import os, bb | ||
7 | staging_incdir = bb.data.getVar( "STAGING_INCDIR", d, 1 ) | 6 | staging_incdir = bb.data.getVar( "STAGING_INCDIR", d, 1 ) |
8 | if os.path.exists( "%s/python2.5" % staging_incdir ): return "python2.5" | 7 | if os.path.exists( "%s/python2.5" % staging_incdir ): return "python2.5" |
9 | if os.path.exists( "%s/python2.4" % staging_incdir ): return "python2.4" | 8 | if os.path.exists( "%s/python2.4" % staging_incdir ): return "python2.4" |