From 0bb3b65ebf154c1d1df93f3fe2f82da2ddf8cbeb Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Sun, 16 Dec 2018 22:10:31 -0500 Subject: [PATCH] base: Bump openssh to V_7_9_P1 Also, be explicit with ssl-dir for configuration. --- imagefiles/build-and-install-openssh.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imagefiles/build-and-install-openssh.sh b/imagefiles/build-and-install-openssh.sh index 6fae766..a7a6e7b 100755 --- a/imagefiles/build-and-install-openssh.sh +++ b/imagefiles/build-and-install-openssh.sh @@ -2,7 +2,7 @@ set -ex -OPENSSH_ROOT=V_7_6_P1 +OPENSSH_ROOT=V_7_9_P1 cd /usr/src curl -LO https://github.com/openssh/openssh-portable/archive/${OPENSSH_ROOT}.tar.gz @@ -14,7 +14,7 @@ cd ${OPENSSH_SRC_DIR} autoreconf -./configure --prefix=/usr/local +./configure --with-ssl-dir=/usr/local/ssl --prefix=/usr/local make -j1 install