commit | 039540a3f5fbb458987c999e507010c478dd635d | [log] [tgz] |
---|---|---|
author | Paul Kehrer <paul.l.kehrer@gmail.com> | Sat Aug 29 16:02:19 2015 -0500 |
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | Sat Aug 29 16:03:09 2015 -0500 |
tree | de9f8a15a766e17c9a91c0a093f89562b7c2e8fd | |
parent | 2f1d5a47c155edf376fdef3b5b94667cea259653 [diff] |
add some otool output to the OS X builds
diff --git a/.travis/run.sh b/.travis/run.sh index b519c9f..a1788f8 100755 --- a/.travis/run.sh +++ b/.travis/run.sh
@@ -31,3 +31,7 @@ fi source ~/.venv/bin/activate tox -- $TOX_FLAGS +# Output information about linking of the OpenSSL library on OS X +if [[ "$(uname -s)" == "Darwin" ]]; then + otool -L `find .tox -name _openssl.so` +fi