diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-01-03 14:04:34 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-01-03 14:04:34 -0600 |
commit | 2d96df9df9868ed6389ac539dc7050f05d74e56f (patch) | |
tree | bef310f467dcd30f2c0734e31d1b028fea396558 | |
parent | 56124d3977266d57af317b5f91b3ef203d49e353 (diff) | |
download | cryptography-2d96df9df9868ed6389ac539dc7050f05d74e56f.tar.gz cryptography-2d96df9df9868ed6389ac539dc7050f05d74e56f.tar.bz2 cryptography-2d96df9df9868ed6389ac539dc7050f05d74e56f.zip |
more review comments
-rwxr-xr-x | .travis/install.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.travis/install.sh b/.travis/install.sh index 12cd77c7..5e8c11cc 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -75,10 +75,11 @@ else tar zxf openssl-$OPENSSL_VERSION_NUMBER.tar.gz cd openssl-$OPENSSL_VERSION_NUMBER ./config shared no-asm no-ssl2 -fPIC --prefix="$HOME/$OPENSSL_DIR" - # modify the shlib version to a unique one to make sure it doesn't load the system one. + # modify the shlib version to a unique one to make sure the dynamic linker + # doesn't load the system one. sed -i "s/^SHLIB_MAJOR=.*/SHLIB_MAJOR=100/" Makefile - sed -i "s/^SHLIB_MINOR=.*/SHLIB_MINOR=0\.0/" Makefile - sed -i "s/^SHLIB_VERSION_NUMBER=.*/SHLIB_VERSION_NUMBER=100\.0\.0/" Makefile + sed -i "s/^SHLIB_MINOR=.*/SHLIB_MINOR=0.0/" Makefile + sed -i "s/^SHLIB_VERSION_NUMBER=.*/SHLIB_VERSION_NUMBER=100.0.0/" Makefile make depend make install fi |