|
From: <ai...@us...> - 2010-11-28 22:13:22
|
Revision: 11356
http://plplot.svn.sourceforge.net/plplot/?rev=11356&view=rev
Author: airwin
Date: 2010-11-28 22:13:16 +0000 (Sun, 28 Nov 2010)
Log Message:
-----------
Fix syntax error introduced by last commit. Parentheses which group
test commands must be escaped to avoid using the other interpretation
of parentheses which is to launch a subshell.
Modified Paths:
--------------
trunk/scripts/comprehensive_test.sh
Modified: trunk/scripts/comprehensive_test.sh
===================================================================
--- trunk/scripts/comprehensive_test.sh 2010-11-28 21:38:24 UTC (rev 11355)
+++ trunk/scripts/comprehensive_test.sh 2010-11-28 22:13:16 UTC (rev 11356)
@@ -65,7 +65,7 @@
Each of the steps in this comprehensive test may take a while...."
PATH_SAVE=$PATH
- if [ "$CMAKE_BUILD_TYPE_OPTION" = "-DBUILD_SHARED_LIBS=ON" -a ( "$generator_string" = "MinGW Makefiles" -o "$generator_string" = "MSYS Makefiles" ) ] ; then
+ if [ "$CMAKE_BUILD_TYPE_OPTION" = "-DBUILD_SHARED_LIBS=ON" -a \( "$generator_string" = "MinGW Makefiles" -o "$generator_string" = "MSYS Makefiles" \) ] ; then
PATH=$PATH_SAVE:$BUILD_TREE/dll
fi
mkdir -p "$OUTPUT_TREE"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|