From 778fa3431c87e02439182a051ba8c6b5bd7d9b29 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Tue, 29 Sep 2009 15:35:42 +0200 Subject: [PATCH] regress: fix $() to `` for solaris --- regress/tests/exclude-dir-test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regress/tests/exclude-dir-test b/regress/tests/exclude-dir-test index ec7d858567..ee420e170d 100755 --- a/regress/tests/exclude-dir-test +++ b/regress/tests/exclude-dir-test @@ -79,7 +79,7 @@ fi # build/po is included 2 times with a different exclude file # we shouldn't see scripts and bin -nb=$(grep -e 'build/po/fr.po$' $tmp/log3.out | wc -l) +nb=`grep -e 'build/po/fr.po$' $tmp/log3.out | wc -l` if [ $nb != 2 ]; then print_debug "ERROR: Should see fr.po two times" bstat=2 -- 2.39.5