From f2a8fc48c5eaef165daa76225230c1e9caff0ece Mon Sep 17 00:00:00 2001 From: Rucke Teg Date: Thu, 10 Feb 2022 23:04:43 +0100 Subject: [PATCH] openssh-server: manually set path to passwd binary In the build environment the autotools finds the `passwd` binary in /usr/bin. But in the target image it is available under /bin instead. Manually set the path to `passwd` binary to `/bin/passwd` Signed-off-by: Rucke Teg --- net/openssh/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/openssh/Makefile b/net/openssh/Makefile index d384a20524..6ba72bf702 100644 --- a/net/openssh/Makefile +++ b/net/openssh/Makefile @@ -183,7 +183,7 @@ CONFIGURE_ARGS += \ --without-pam endif -CONFIGURE_VARS += LD="$(TARGET_CC)" +CONFIGURE_VARS += LD="$(TARGET_CC)" PATH_PASSWD_PROG="/bin/passwd" ifeq ($(BUILD_VARIANT),with-pam) TARGET_LDFLAGS += -lpthread -- 2.30.2