From: Joel Rosdahl Date: Sat, 23 Jul 2016 20:34:08 +0000 (+0200) Subject: test: Add missing -s option to cut X-Git-Tag: v3.3~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3998afd0651c9440a8b203c24d26a7d4bcb0d77f;p=thirdparty%2Fccache.git test: Add missing -s option to cut --- diff --git a/test.sh b/test.sh index cc77312f5..f3759fe87 100755 --- a/test.sh +++ b/test.sh @@ -786,7 +786,7 @@ base_suite() { link_suite() { compiler_binary=`echo $COMPILER | cut -d' ' -f1` - compiler_args=`echo $COMPILER | cut -d' ' -f2-` + compiler_args=`echo $COMPILER | cut -s -d' ' -f2-` if [ `dirname $compiler_binary` = . ]; then ln -s "$CCACHE" $compiler_binary CCACHE_COMPILE="./$compiler_binary $compiler_args"