distutils-base.bbclass: prefer most recent python version for packaging
authorMichael Lauer <mickey@vanille-media.de>
Wed, 15 Aug 2007 19:21:28 +0000 (19:21 +0000)
committerMichael Lauer <mickey@vanille-media.de>
Wed, 15 Aug 2007 19:21:28 +0000 (19:21 +0000)
classes/distutils-base.bbclass

index c3f3257..74c572b 100644 (file)
@@ -5,9 +5,9 @@ RDEPENDS += "python-core"
 def python_dir(d):
        import os, bb
        staging_incdir = bb.data.getVar( "STAGING_INCDIR", d, 1 )
-       if os.path.exists( "%s/python2.3" % staging_incdir ): return "python2.3"
-       if os.path.exists( "%s/python2.4" % staging_incdir ): return "python2.4"
        if os.path.exists( "%s/python2.5" % staging_incdir ): return "python2.5"
+       if os.path.exists( "%s/python2.4" % staging_incdir ): return "python2.4"
+       if os.path.exists( "%s/python2.3" % staging_incdir ): return "python2.3"
        raise "No Python in STAGING_INCDIR. Forgot to build python-native ?"
 
 PYTHON_DIR = "${@python_dir(d)}"