Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-07-04 14:02:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-07-04 14:02:58 +0400
commit006b550f6f103e9d9b5d9cb2f4b0e8bdb21f7d35 (patch)
tree99c904c0359639f74252a61ce5df64395508cd6e /build_files
parentef801eb1ffade52dfb597f79b98b67d7ad67f0b4 (diff)
Fix the ABIFLAGS order for detecting Python debug builds
D631 by mva
Diffstat (limited to 'build_files')
-rw-r--r--build_files/cmake/Modules/FindPythonLibsUnix.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/cmake/Modules/FindPythonLibsUnix.cmake b/build_files/cmake/Modules/FindPythonLibsUnix.cmake
index 5656d33c934..1fb27e7898c 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})