Skip to content

Commit 217e059

Browse files
authored
Avoid overquoting in Travis setup (#25049)
This leads to failure in configure.
1 parent d953095 commit 217e059

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ before_install:
7676
if [ "$ARCH" = "x86_64" ]; then
7777
BUILDOPTS="$BUILDOPTS JULIA_CPU_TARGET=x86-64";
7878
else
79-
BUILDOPTS="$BUILDOPTS JULIA_CPU_TARGET=pentium4 MARCH=pentium4 CFLAGS=\"-mfpmath=sse\"";
79+
BUILDOPTS="$BUILDOPTS JULIA_CPU_TARGET=pentium4 MARCH=pentium4 CFLAGS=-mfpmath=sse";
8080
fi;
8181
echo "override ARCH=$ARCH" >> Make.user;
8282
sudo sh -c "echo 0 > /proc/sys/net/ipv6/conf/lo/disable_ipv6";

0 commit comments

Comments
 (0)