
On Tue, Jan 27, 2009 at 1:21 AM, Bob Jamison <rwjj@...127...> wrote:
I found a small problem in build.xml that broke the build. In the "cxxtest" target, the path of the python executable was set to /target/python/python.exe . The problem with that is that the python you want at build time is the one that is native on your build machine. So on Linux, it would be /usr/bin/python or whatever. For win32/Mingw native builds, it would be preferable to add ${devlibs}/python to the PATH in mingwenv.bat rather than to explicitly invoke the one in /target/. Just "python" should be correct.
Sorry - that was my change, for me "python" didn't work on a machine without any python so I changed it to the devlibs python. You can revert that change if it causes you problems.