xargs ---> xargs echo

(xargs alone doesnt seem to be documented in the man page, while xargs echo is documented)
This commit is contained in:
Benoit Jacob 2009-11-12 15:37:50 -05:00
parent 9b7708f660
commit 7e3c4096d8

View File

@ -8,7 +8,7 @@ then
fi
TESTSLIST="${cmake_tests_list}"
targets_to_make=`echo "$TESTSLIST" | grep "$1" | sed s/^/test_/g | xargs`
targets_to_make=`echo "$TESTSLIST" | grep "$1" | sed s/^/test_/g | xargs echo`
if [ $# == 1 ]
then