From 6d1b355431f07c64d3067c7b42a6e11078d41be1 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Wed, 26 Apr 2023 16:03:18 +0200 Subject: [PATCH] WIP Change-Id: I7a728e27a5566d4943045767bd4ae16677970b5f --- .../openssh-sftp-server/openssh-sftp-server_9.3p1.bb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/recipes-extra/openssh-sftp-server/openssh-sftp-server_9.3p1.bb b/recipes-extra/openssh-sftp-server/openssh-sftp-server_9.3p1.bb index 0712c1a..da9b7d6 100644 --- a/recipes-extra/openssh-sftp-server/openssh-sftp-server_9.3p1.bb +++ b/recipes-extra/openssh-sftp-server/openssh-sftp-server_9.3p1.bb @@ -10,7 +10,8 @@ DEPENDS = "" # SRC_URI = "http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-${PV}.tar.gz" # Official mirror is down as of writing. The github mirror is officially # mentioned here: https://www.openssh.com/portable.html -SRC_URL = "https://github.com/openssh/openssh-portable/archive/refs/tags/V_9_3_P1.tar.gz" +GIT_TAG = "V_9_3_P1" +SRC_URL = "https://github.com/openssh/openssh-portable/archive/refs/tags/${GIT_TAG}.tar.gz" SRC_URI[md5sum] = "68f7f08269c442e2728656cd97506478" SRC_URI[sha256sum] = "c5e541b59bdad8950a8c999fe18ca1ad39f6132b042cd85fb29e788ca9f9ce47" @@ -19,7 +20,10 @@ inherit autotools EXTRA_OECONF += "--without-openssl --without-zlib --with-ldflags=-static" +S = "${WORKDIR}/openssh-portable-${GIT_TAG}" + do_compile() { + echo "FIXME: PWD: $PWD" oe_runmake sftp-server }