[Bf-blender-cvs] [006b550] master: Fix the ABIFLAGS order for detecting Python debug builds

Campbell Barton noreply at git.blender.org
Fri Jul 4 12:03:30 CEST 2014


Commit: 006b550f6f103e9d9b5d9cb2f4b0e8bdb21f7d35
Author: Campbell Barton
Date:   Fri Jul 4 20:02:58 2014 +1000
https://developer.blender.org/rB006b550f6f103e9d9b5d9cb2f4b0e8bdb21f7d35

Fix the ABIFLAGS order for detecting Python debug builds

D631 by mva

===================================================================

M	build_files/cmake/Modules/FindPythonLibsUnix.cmake

===================================================================

diff --git a/build_files/cmake/Modules/FindPythonLibsUnix.cmake b/build_files/cmake/Modules/FindPythonLibsUnix.cmake
index 5656d33..1fb27e7 100644
--- a/build_files/cmake/Modules/FindPythonLibsUnix.cmake
+++ b/build_files/cmake/Modules/FindPythonLibsUnix.cmake
@@ -71,7 +71,7 @@ IF((NOT _IS_INC_DEF) OR (NOT _IS_INC_CONF_DEF) OR (NOT _IS_LIB_DEF) OR (NOT _IS_
 
   SET(_python_ABI_FLAGS
     "m;mu;u; "    # release
-    "md;mud;ud;d" # debug
+    "dm;dmu;du;d" # debug
   )
 
   STRING(REPLACE "." "" _PYTHON_VERSION_NO_DOTS ${PYTHON_VERSION})




More information about the Bf-blender-cvs mailing list