From: Richard Levitte Date: Tue, 8 Mar 2016 16:27:15 +0000 (+0100) Subject: Fix travis builds X-Git-Tag: OpenSSL_1_1_0-pre4~231 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9cae86d56faec7bdbf97a5b241e53052adc535ce;p=thirdparty%2Fopenssl.git Fix travis builds Travis doesn't seem to know about 'expr' Reviewed-by: Emilia Käsper --- diff --git a/.travis.yml b/.travis.yml index ac8d81295dc..82fada2c766 100644 --- a/.travis.yml +++ b/.travis.yml @@ -83,7 +83,7 @@ before_script: - cd .. script: - - if expr "$CONFIG_OPTS" : "--unified"; then + - if echo "$CONFIG_OPTS" | grep "--unified" >/dev/null; then cd _build; else cd _srcdist;