On 2/23/2012 6:20 AM, Andrea Crotti wrote:
So well I thought I could just use the MSYS Makefiles instead, but reconfiguring and with the same target that doesn't work: Scanning dependencies of target cleanup_system process_begin: CreateProcess(NULL, /c/python25/python.exe h:/git_projs/PSI_Hamburg/utils/utils/bin/clean_global.py, ...) failed. make (e=2): The system cannot find the file specified. epd-make[3]: *** [CMakeFiles/cleanup_system] Error 2 epd-make[2]: *** [CMakeFiles/cleanup_system.dir/all] Error 2 epd-make[1]: *** [CMakeFiles/run_as_user.dir/rule] Error 2 epd-make: *** [run_as_user] Error 2
I don't think anyone really addressed your question. Your question seems to have taken on a whole new life....
The problem seems to be that your cmake file is creating makefiles that use a python program in them. For some reason python is not working from an msys shell for you. You should debug that, and try to figure out how to get a python that does work, or figure out why this python is failing under msys.
Moral of the story, don't depend on python in your build, use cmake scripts if possible, or c programs that you build .... :)
-Bill -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake
