From: W.C.A. Wijngaards Date: Wed, 24 Mar 2021 10:06:10 +0000 (+0100) Subject: Travis, fix quotes on config opts for iOS and Android configure. X-Git-Tag: release-1.13.2rc1~212 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4041342cf23c611dbae804d9684b80195e3875fb;p=thirdparty%2Funbound.git Travis, fix quotes on config opts for iOS and Android configure. --- 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