From 5d3b41a84a1b641d2986a120b161da2fb5f4bfaa Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 1 Jun 2006 07:09:51 +0000 Subject: [PATCH] Don't assume that \< \> works in sed. --- tests/help-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/help-version b/tests/help-version index b3930626df..47cc9d4675 100755 --- a/tests/help-version +++ b/tests/help-version @@ -42,7 +42,7 @@ scripts to fail, so it is being removed from the list of programs checked by this test. ************************************************ EOF - all_programs=`echo $all_programs|sed 's/\ *//'` + all_programs=`echo $all_programs | tr ' ' '\n' | grep -v '^groups$'` fi ;; esac -- 2.47.3