From: <ai...@us...> - 2010-11-26 17:37:06
|
Revision: 11351 http://plplot.svn.sourceforge.net/plplot/?rev=11351&view=rev Author: airwin Date: 2010-11-26 17:36:59 +0000 (Fri, 26 Nov 2010) Log Message: ----------- Put dll on PATH in the build tree if using "MinGW Makefiles" or "MSYS Makefiles" generator. This change not tested yet. Modified Paths: -------------- trunk/scripts/comprehensive_test.sh Modified: trunk/scripts/comprehensive_test.sh =================================================================== --- trunk/scripts/comprehensive_test.sh 2010-11-24 07:52:02 UTC (rev 11350) +++ trunk/scripts/comprehensive_test.sh 2010-11-26 17:36:59 UTC (rev 11351) @@ -64,6 +64,7 @@ Each of the steps in this comprehensive test may take a while...." + PATH_SAVE=$PATH mkdir -p "$OUTPUT_TREE" rm -rf "$BUILD_TREE" mkdir -p "$BUILD_TREE" @@ -84,10 +85,14 @@ cmake_rc=$? if [ "$cmake_rc" -eq 0 ] ; then if [ "$do_test_build_tree" = "yes" -a "$do_test_noninteractive" = "yes" ] ; then + if [ "$generator_string" = "MinGW Makefiles" -o "$generator_string" = "MSYS Makefiles" ] ; then + PATH=$PATH_SAVE:dll + fi output="$OUTPUT_TREE"/make_noninteractive.out rm -f "$output" echo "$build_command test_noninteractive in the build tree" $build_command VERBOSE=1 test_noninteractive >& "$output" + PATH=$PATH_SAVE fi if [ "$do_ctest" = "yes" -o \ "$do_test_install_tree" = "yes" -o \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |