From d58e4e637bcc8ebd0b83a9561728a21a09291d9f Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Wed, 3 Nov 2010 19:00:33 +0100 Subject: [PATCH] Solaris /bin/sh build fix --- test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.sh b/test.sh index c62a67169..375b26198 100755 --- a/test.sh +++ b/test.sh @@ -1170,9 +1170,9 @@ EOF fi done CCACHE_SLOPPINESS=include_file_mtime $CCACHE $COMPILER -c strange.c - manifest=$(find $CCACHE_DIR -name '*.manifest') + manifest=`find $CCACHE_DIR -name '*.manifest'` if [ -n "$manifest" ]; then - data="$($CCACHE --dump-manifest $manifest | egrep '/dev/(stdout|tty|sda|hda)')" + data="`$CCACHE --dump-manifest $manifest | egrep '/dev/(stdout|tty|sda|hda'`" if [ -n "$data" ]; then test_failed "$manifest contained troublesome file(s): $data" fi -- 2.47.3