Skip to content
This repository has been archived by the owner on Jun 9, 2022. It is now read-only.

Commit

Permalink
python.cmake: Fix syntax of debug config args.
Browse files Browse the repository at this point in the history
  • Loading branch information
stuarteberg committed Jul 29, 2014
1 parent 2cd3aec commit 996df17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 996df17

Please sign in to comment.