|
From: <sv...@va...> - 2005-07-05 00:00:43
|
Author: sewardj
Date: 2005-07-05 01:00:40 +0100 (Tue, 05 Jul 2005)
New Revision: 4106
Log:
Fix quoting a bit.
Modified:
trunk/auxprogs/gsl16test
Modified: trunk/auxprogs/gsl16test
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/auxprogs/gsl16test 2005-07-04 23:54:41 UTC (rev 4105)
+++ trunk/auxprogs/gsl16test 2005-07-05 00:00:40 UTC (rev 4106)
@@ -80,7 +80,7 @@
"rm -rf gsl-1.6 && tar xzf $GSL_FILE" && \
\
runcmd "Configuring " \
- "(cd gsl-1.6 && CC=3D$GSL_CC CFLAGS=3D$GSL_CFLAGS ./configure)" &=
& \
+ "(cd gsl-1.6 && CC=3D$GSL_CC CFLAGS=3D\"$GSL_CFLAGS\" ./configure=
)" && \
\
runcmd "Building " \
"(cd gsl-1.6 && make && make -k check)"
@@ -92,7 +92,7 @@
=20
echo -n " Collecting valgrinded results "
rm -f out-V
-(cd gsl-1.6 && for f in $ALL_TESTS ; do $GSL_VV -v --trace-children=3Dye=
s $GSL_VFLAGS ./$f ; done) &> out-V
+(cd gsl-1.6 && for f in $ALL_TESTS ; do $GSL_VV -v --trace-children=3Dye=
s \"$GSL_VFLAGS\" ./$f ; done) &> out-V
echo " ... done"
=20
echo -n " Native fails: " && (grep FAIL: out-REF | wc -l)
|