From 3ff17688eb4c3bbbfb54e68382d3586b1577c4cb Mon Sep 17 00:00:00 2001 From: fennecdjay Date: Thu, 23 May 2019 14:16:57 +0200 Subject: [PATCH] :wrench: Travis testing (fix windows/clan complex) --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index fcbb137a..3d84f019 100644 --- a/.travis.yml +++ b/.travis.yml @@ -61,10 +61,10 @@ script: then make && make test; else { if [ "$CC" = "clang" ]; - then export CFLAGS+="-DSSIZE_T=ssize_t -D_USE_MATH_DEFINES"; + then export CFLAGS+=" -DSSIZE_T=ssize_t -D_USE_MATH_DEFINES"; if [ "$USE_DOUBLE" = 0 ]; - then export CFLAGS+="-Dm_uint='struct _C_float_complex'"; - else export CFLAGS+="-Dm_uint='struct _C_double_complex'"; + then export CFLAGS+=" -Dm_uint='struct _C_float_complex'"; + else export CFLAGS+=" -Dm_uint='struct _C_double_complex'"; fi fi; make.exe && make.exe test; -- 2.43.0