fixed issue w/ manual sqlite install script
This commit is contained in:
parent
1ce1f37afe
commit
e8b43455ed
1 changed files with 7 additions and 1 deletions
|
@ -3,10 +3,16 @@ set -e
|
|||
|
||||
cd /tmp
|
||||
|
||||
# cleanup previously downloaded and unpacked files.
|
||||
rm sqlite-autoconf-3081101.tar.gz
|
||||
rm -rf sqlite-autoconf-3081101
|
||||
|
||||
# download sqlite
|
||||
curl -O https://www.sqlite.org/2015/sqlite-autoconf-3081101.tar.gz
|
||||
tar xzf sqlite-autoconf-3081101.tar.gz
|
||||
|
||||
# build and install
|
||||
cd sqlite-autoconf-3081101
|
||||
cd sqlite-3.6.421
|
||||
./configure -prefix=/scratch/usr/local
|
||||
make
|
||||
sudo make install
|
||||
|
|
Loading…
Reference in a new issue