]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
test: Add missing -s option to cut
authorJoel Rosdahl <joel@rosdahl.net>
Sat, 23 Jul 2016 20:34:08 +0000 (22:34 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Sat, 23 Jul 2016 20:34:08 +0000 (22:34 +0200)
test.sh

diff --git a/test.sh b/test.sh
index cc77312f5c8462fae639330b753ff6319ba14243..f3759fe87ae59b7597ef97de2c213cad22a6debe 100755 (executable)
--- 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"