From faa13013686b179ab8f23a9ea7d238fb090c5ffe Mon Sep 17 00:00:00 2001 From: Collin Funk Date: Sat, 25 Jan 2025 21:53:17 -0800 Subject: [PATCH] tests: adjust shell syntax that breaks AIX /bin/sh * find/testsuite/find.gnu/execdir-multiple.exp: Move the 'do' of a for loop to the same line so AIX doesn't fail. --- find/testsuite/find.gnu/execdir-multiple.exp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/find/testsuite/find.gnu/execdir-multiple.exp b/find/testsuite/find.gnu/execdir-multiple.exp index f292fffa..4ce23c3d 100644 --- a/find/testsuite/find.gnu/execdir-multiple.exp +++ b/find/testsuite/find.gnu/execdir-multiple.exp @@ -22,8 +22,7 @@ set -e here=`pwd` d=`basename $here` -for arg; -do +for arg; do echo "$d" "$arg" done | LC_ALL=C sort }