Skip to content

Commit

Permalink
Merge pull request BVLC#2528 from shelhamer/travis-lmdb-git
Browse files Browse the repository at this point in the history
Fix lmdb install for travis
  • Loading branch information
shelhamer committed May 30, 2015
2 parents f37bfbf + 66583ec commit 8699355
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/travis/travis_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ if $WITH_CUDA; then
fi

# Install LMDB
LMDB_URL=ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-2.4.39.tgz
LMDB_FILE=/tmp/openldap.tgz
LMDB_URL=https://github.com/LMDB/lmdb/archive/LMDB_0.9.14.tar.gz
LMDB_FILE=/tmp/lmdb.tar.gz
pushd .
curl $LMDB_URL -o $LMDB_FILE
wget $LMDB_URL -O $LMDB_FILE
tar -C /tmp -xzvf $LMDB_FILE
cd /tmp/openldap*/libraries/liblmdb/
cd /tmp/lmdb*/libraries/liblmdb/
$MAKE
$MAKE install
popd
Expand Down

0 comments on commit 8699355

Please sign in to comment.