Module: Mesa
Branch: master
Commit: 19a633310feb3283d979c4ab4cb11a53dcfb6af6
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=19a633310feb3283d979c4ab4cb11a53dcfb6af6

Author: José Fonseca <[email protected]>
Date:   Sat Mar  6 09:18:15 2010 +0000

scons: Fix version comparisons.

---

 scons/llvm.py |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/scons/llvm.py b/scons/llvm.py
index 88a6385..01eae24 100644
--- a/scons/llvm.py
+++ b/scons/llvm.py
@@ -76,6 +76,7 @@ def generate(env):
             mo = llvm_version_re.match(line)
             if mo:
                 llvm_version = mo.group(1)
+                llvm_version = distutils.version.LooseVersion(llvm_version)
                 break
         if llvm_version is None:
             print 'scons: could not determine the LLVM version from %s' % 
llvm_config
@@ -130,6 +131,7 @@ def generate(env):
                 env.Append(LINKFLAGS = ['/nodefaultlib:LIBCMT'])
     elif env.Detect('llvm-config'):
         llvm_version = env.backtick('llvm-config --version').rstrip()
+        llvm_version = distutils.version.LooseVersion(llvm_version)
 
         try:
             env.ParseConfig('llvm-config --cppflags')
@@ -145,7 +147,6 @@ def generate(env):
     assert llvm_version is not None
 
     print 'scons: Found LLVM version %s' % llvm_version
-    llvm_version = distutils.version.LooseVersion(llvm_version)
     env['LLVM_VERSION'] = llvm_version
 
     # Define HAVE_LLVM macro with the major/minor version number (e.g., 0x0206 
for 2.6)

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to