[oe-commits] Khem Raj : python-dir.bbclass: Add checks for 2.7 and 3.1 as well

git version control git at git.openembedded.org
Mon Feb 14 07:12:56 UTC 2011


Module: openembedded.git
Branch: master
Commit: d808a0dc5c6cea5af667bdaa39ffccf4dccf77eb
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=d808a0dc5c6cea5af667bdaa39ffccf4dccf77eb

Author: Khem Raj <raj.khem at gmail.com>
Date:   Sun Feb 13 23:10:43 2011 -0800

python-dir.bbclass: Add checks for 2.7 and 3.1 as well

Signed-off-by: Khem Raj <raj.khem at gmail.com>

---

 classes/python-dir.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/classes/python-dir.bbclass b/classes/python-dir.bbclass
index 7b0b809..5d873e3 100644
--- a/classes/python-dir.bbclass
+++ b/classes/python-dir.bbclass
@@ -1,7 +1,7 @@
 def python_dir(d):
 	import os, bb
 	staging_incdir = bb.data.getVar( "STAGING_INCDIR", d, 1 )
-	for majmin in "2.6 2.5 2.4 2.3".split():
+	for majmin in "3.1 2.7 2.6 2.5 2.4 2.3".split():
 		if os.path.exists( "%s/python%s" % ( staging_incdir, majmin ) ): return "python%s" % majmin
 	if not "python-native" in bb.data.getVar( "DEPENDS", d, 1 ).split():
 		raise Exception("No Python in STAGING_INCDIR. Forgot to build python-native?")





More information about the Openembedded-commits mailing list