summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJohn Maddock <john@johnmaddock.co.uk>2003-02-02 12:13:29 +0000
committerJohn Maddock <john@johnmaddock.co.uk>2003-02-02 12:13:29 +0000
commit14a4b3f3ebb9ea6da7c7010961f8a69e543f2746 (patch)
treee68f3385a8c39641e5ad4d1dc962b902551c32f4 /tools
parent8c2caa9def09f4ca8701d9e5983cbeea74546123 (diff)
downloadboost-14a4b3f3ebb9ea6da7c7010961f8a69e543f2746.tar.gz
Fixed erronious == in test.
[SVN r17160]
Diffstat (limited to 'tools')
-rw-r--r--tools/regression/run_tests.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/regression/run_tests.sh b/tools/regression/run_tests.sh
index dc8548462e..f04ec1c8f2 100644
--- a/tools/regression/run_tests.sh
+++ b/tools/regression/run_tests.sh
@@ -93,7 +93,7 @@ if test ! -d $boost_root ; then
exit 256
fi
fi
-if test $cvs_update == yes ; then
+if test $cvs_update = yes ; then
echo fetching Boost:
echo "/1 :pserver:anonymous@cvs.sourceforge.net:2401/cvsroot/boost A" | cat $HOME/.cvspass - | sort | uniq > $HOME/.cvspass
cd `dirname $boost_root`
@@ -168,3 +168,4 @@ if test $? != 0 ; then
fi
echo "done!"
+