From 4041342cf23c611dbae804d9684b80195e3875fb Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Wed, 24 Mar 2021 11:06:10 +0100 Subject: [PATCH] Travis, fix quotes on config opts for iOS and Android configure. --- .travis.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 65260c6ba..d6a720d7e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -339,10 +339,10 @@ script: ./contrib/ios/install_openssl.sh ./contrib/ios/install_expat.sh export CONFIG_OPTS="\ - --build=\"$AUTOTOOLS_BUILD\" --host=\"$AUTOTOOLS_HOST\" \ - --prefix=\"$IOS_PREFIX\" \ - --with-ssl=\"$IOS_PREFIX\" --disable-gost \ - --with-libexpat=\"$IOS_PREFIX\" " + --build=$AUTOTOOLS_BUILD --host=$AUTOTOOLS_HOST \ + --prefix=$IOS_PREFIX \ + --with-ssl=$IOS_PREFIX --disable-gost \ + --with-libexpat=$IOS_PREFIX " echo CONFIG_OPTS ${CONFIG_OPTS} export MAKE_TEST=no export TEST_INSTALL=yes @@ -356,10 +356,10 @@ script: ./contrib/android/install_openssl.sh ./contrib/android/install_expat.sh export CONFIG_OPTS="\ - --build=\"$AUTOTOOLS_BUILD\" --host=\"$AUTOTOOLS_HOST\" \ - --prefix=\"$ANDROID_PREFIX\" \ - --with-ssl=\"$ANDROID_PREFIX\" --disable-gost \ - --with-libexpat=\"$ANDROID_PREFIX\" " + --build=$AUTOTOOLS_BUILD --host=$AUTOTOOLS_HOST \ + --prefix=$ANDROID_PREFIX \ + --with-ssl=$ANDROID_PREFIX --disable-gost \ + --with-libexpat=$ANDROID_PREFIX " echo CONFIG_OPTS ${CONFIG_OPTS} export MAKE_TEST=no export TEST_INSTALL=yes -- 2.47.2