From 006fa2d45b16fbc5cdc256e533b2bbe1b4e60c0e Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Thu, 16 Feb 2006 09:00:57 +0000 Subject: [PATCH] When setting an environment variable by piping something into grep, backquotes can be useful. Also tweak an if case to be more portable. --- testsuite/testing.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testsuite/testing.sh b/testsuite/testing.sh index c1002a6aa..f16f4c7e8 100755 --- a/testsuite/testing.sh +++ b/testsuite/testing.sh @@ -42,9 +42,9 @@ export SKIP= optional() { - option="$OPTIONFLAGS" | egrep "(^|:)$1(:|\$)" + option=`echo "$OPTIONFLAGS" | egrep "(^|:)$1(:|\$)"` # Not set? - if [[ -z "$1" || -z "$OPTIONFLAGS" || ${#option} -ne 0 ]] + if [ -z "$1" ] || [ -z "$OPTIONFLAGS" ] || [ ${#option} -ne 0 ] then SKIP="" return -- 2.25.1