[openssh-commits] [openssh] branch master updated: Don't install shim for AWK=awk.
git+noreply at mindrot.org
git+noreply at mindrot.org
Mon Jun 1 18:27:59 AEST 2026
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
The following commit(s) were added to refs/heads/master by this push:
new 51db029b5 Don't install shim for AWK=awk.
51db029b5 is described below
commit 51db029b53488bc972deba13724034f8e35e6e38
Author: Darren Tucker <dtucker at dtucker.net>
AuthorDate: Mon Jun 1 18:26:31 2026 +1000
Don't install shim for AWK=awk.
If configure finds an undadorned awk, don't install the shim to prevent
recursive calls to it.
---
regress/test-exec.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/regress/test-exec.sh b/regress/test-exec.sh
index cb9836c98..30a2a28ab 100644
--- a/regress/test-exec.sh
+++ b/regress/test-exec.sh
@@ -80,7 +80,7 @@ if test "x${EGREP}" != "x"; then
fi
# Likewise with awk.
-if test "x${AWK}" != "x"; then
+if test "x${AWK}" != "x" && test "x${AWK}" != "xawk"; then
awk ()
{
${AWK} "$@"
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list