[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Tue Mar 8 16:38:10 UTC 2016


The branch master has been updated
       via  9cae86d56faec7bdbf97a5b241e53052adc535ce (commit)
      from  638b3c88372857b4b8df9347683d46b0a12b9219 (commit)


- Log -----------------------------------------------------------------
commit 9cae86d56faec7bdbf97a5b241e53052adc535ce
Author: Richard Levitte <levitte at openssl.org>
Date:   Tue Mar 8 17:27:15 2016 +0100

    Fix travis builds
    
    Travis doesn't seem to know about 'expr'
    
    Reviewed-by: Emilia Käsper <emilia at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index ac8d812..82fada2 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;


More information about the openssl-commits mailing list