diff options
author | bhack <s.fabri@email.it> | 2014-09-11 00:36:04 +0200 |
---|---|---|
committer | bhack <s.fabri@email.it> | 2014-09-11 00:59:24 +0200 |
commit | be9c5bd9327f862b2141535ca0ec36f7a28142f4 (patch) | |
tree | 3870ea2969035f0e12cd9c49f2af456f4bbb8267 /scripts | |
parent | 133b4dbb11c1e1c702bdcf8bb78b4cf9a1218bc3 (diff) | |
download | caffeonacl-be9c5bd9327f862b2141535ca0ec36f7a28142f4.tar.gz caffeonacl-be9c5bd9327f862b2141535ca0ec36f7a28142f4.tar.bz2 caffeonacl-be9c5bd9327f862b2141535ca0ec36f7a28142f4.zip |
Fix lmbdb travis with openldap
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis/travis_install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/travis/travis_install.sh b/scripts/travis/travis_install.sh index 753bae87..ef84e5dd 100755 --- a/scripts/travis/travis_install.sh +++ b/scripts/travis/travis_install.sh @@ -67,12 +67,12 @@ if $WITH_CUDA; then fi # Install LMDB -LMDB_URL=https://gitorious.org/mdb/mdb/archive/7f038d0f15bec57b4c07aa3f31cd5564c88a1897.tar.gz -LMDB_FILE=/tmp/mdb.tar.gz +LMDB_URL=ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-2.4.39.tgz +LMDB_FILE=/tmp/openldap.tgz pushd . curl $LMDB_URL -o $LMDB_FILE && \ tar -C /tmp -xzvf $LMDB_FILE && \ - cd /tmp/mdb-mdb/libraries/liblmdb/ && \ + cd /tmp/openldap*/libraries/liblmdb/ && \ make && sudo make install || \ (echo "LMDB install failed"; exit 1) popd |