From c60f300799a7d556797405d802d869d156ac12d1 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Mon, 18 Jan 2016 15:44:30 -0500 Subject: [PATCH] Install nettle 3.1.1 so the nettle package can build --- debian-bootstrap.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index cfb95edc..2913e494 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -82,14 +82,14 @@ apt-get install -y \ mkdir /tmp/nettle-build ( cd /tmp/nettle-build -wget https://ftp.gnu.org/gnu/nettle/nettle-2.7.1.tar.gz -tar zxf nettle-2.7.1.tar.gz -cd nettle-2.7.1 +wget https://ftp.gnu.org/gnu/nettle/nettle-3.1.1.tar.gz +tar zxf nettle-3.1.1.tar.gz +cd nettle-3.1.1 ./configure --prefix=/usr make make install mkdir -p /usr/lib/x86_64-linux-gnu/ -ln -sfv /usr/lib/libnettle.so.4.7 /usr/lib/x86_64-linux-gnu/libnettle.so.4 +ln -sfv /usr/lib/libnettle.so.6.1 /usr/lib/x86_64-linux-gnu/libnettle.so.6 ) rm -rf /tmp/nettle-build