From 996df17bd4c6ffb986e8618f1cbe39fbfb0bab0c Mon Sep 17 00:00:00 2001 From: Stuart Berg Date: Tue, 29 Jul 2014 15:20:11 -0400 Subject: [PATCH] python.cmake: Fix syntax of debug config args. --- python.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python.cmake b/python.cmake index 0e19b47..0b220d0 100644 --- a/python.cmake +++ b/python.cmake @@ -44,7 +44,7 @@ if (${PYTHON_BUILD_DEBUG}) # that can be caused by some python extensions (e.g. the python vtk bindings hit those assertions) # Of course, if those assertions are hit by code that YOU wrote, then you might # want to change this build command so you can debug WITH pymalloc. - set(PYTHON_DEBUG_CONFIG_ARGS "--with-pydebug --without-pymalloc") + set(PYTHON_DEBUG_CONFIG_ARGS "--with-pydebug=yes --with-pymalloc=no") endif() ExternalProject_Add(${python_NAME}