diff options
| author | Steven Fackler <[email protected]> | 2015-06-27 15:53:40 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-06-27 15:53:40 -0700 |
| commit | cb89b23a157d55eb36910287d3b88ba70b5c4178 (patch) | |
| tree | a4272998f34bbd33efa84b169f9ff2c50736dd41 | |
| parent | Don't build a custom openssl on OSX (diff) | |
| download | rust-openssl-cb89b23a157d55eb36910287d3b88ba70b5c4178.tar.xz rust-openssl-cb89b23a157d55eb36910287d3b88ba70b5c4178.zip | |
Strip other LD_LIBRARY_PATH reference
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 2a8eee47..4d0379b8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,4 +10,4 @@ before_script: - ./openssl/test/test.sh script: - (cd openssl && cargo test) -- (test $TRAVIS_OS_NAME == "osx" || (cd openssl && LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH cargo test --features "$FEATURES")) +- (test $TRAVIS_OS_NAME == "osx" || (cd openssl && cargo test --features "$FEATURES")) |