[openssh-commits] [openssh] 02/02: find sk-dummy.so when build_dir != src_dir
git+noreply at mindrot.org
git+noreply at mindrot.org
Thu Feb 17 21:15:56 AEDT 2022
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit b2aee35a1f0dc798339b3fcf96136da71b7e3f6d
Author: Damien Miller <djm at mindrot.org>
Date: Thu Feb 17 21:15:16 2022 +1100
find sk-dummy.so when build_dir != src_dir
spotted by Corinna Vinschen; feedback & ok dtucker@
---
regress/test-exec.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/regress/test-exec.sh b/regress/test-exec.sh
index 15bdd084..9fb02d1c 100644
--- a/regress/test-exec.sh
+++ b/regress/test-exec.sh
@@ -574,6 +574,8 @@ if ! config_defined ENABLE_SK; then
trace skipping sk-dummy
elif [ -f "${SRC}/misc/sk-dummy/obj/sk-dummy.so" ] ; then
SSH_SK_PROVIDER="${SRC}/misc/sk-dummy/obj/sk-dummy.so"
+elif [ -f "${OBJ}/misc/sk-dummy/sk-dummy.so" ] ; then
+ SSH_SK_PROVIDER="${OBJ}/misc/sk-dummy/sk-dummy.so"
elif [ -f "${SRC}/misc/sk-dummy/sk-dummy.so" ] ; then
SSH_SK_PROVIDER="${SRC}/misc/sk-dummy/sk-dummy.so"
fi
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list