From f03f4e60a6137c75ad4769eeb26802cb1a703daf Mon Sep 17 00:00:00 2001 From: mnt Date: Mon, 11 Apr 2016 23:11:15 +0300 Subject: [PATCH] Synchronize adm files --- CMakeModules/SalomeMacros.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeModules/SalomeMacros.cmake b/CMakeModules/SalomeMacros.cmake index 5a94723..f78ffe4 100644 --- a/CMakeModules/SalomeMacros.cmake +++ b/CMakeModules/SalomeMacros.cmake @@ -136,13 +136,13 @@ MACRO(SALOME_INSTALL_SCRIPTS file_list path) LIST(APPEND _all_pyo ${_pyo_file}) ADD_CUSTOM_COMMAND( OUTPUT ${_pyc_file} - COMMAND ${PYTHON_EXECUTABLE} -c "import py_compile ; py_compile.compile('${_source_prefix}${file}', '${_pyc_file}' )" + COMMAND ${PYTHON_EXECUTABLE} -c "import py_compile ; py_compile.compile('${_source_prefix}${file}', '${_pyc_file}', doraise=True )" DEPENDS ${PREFIX}${file} VERBATIM ) ADD_CUSTOM_COMMAND( OUTPUT ${_pyo_file} - COMMAND ${PYTHON_EXECUTABLE} -O -c "import py_compile ; py_compile.compile('${_source_prefix}${file}', '${_pyo_file}' )" + COMMAND ${PYTHON_EXECUTABLE} -O -c "import py_compile ; py_compile.compile('${_source_prefix}${file}', '${_pyo_file}', doraise=True )" DEPENDS ${PREFIX}${file} VERBATIM ) -- 2.39.2