From: Joel Rosdahl Date: Wed, 3 Nov 2010 18:00:33 +0000 (+0100) Subject: Solaris /bin/sh build fix X-Git-Tag: v3.2~290 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d58e4e637bcc8ebd0b83a9561728a21a09291d9f;p=thirdparty%2Fccache.git Solaris /bin/sh build fix --- 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