X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ba66c0a53a3284954996b301af67e23b04513d87..b9734b132bcaf8a26ec1dbfcc71176e7182b5b0e:/src/smpi/smpitools.sh diff --git a/src/smpi/smpitools.sh b/src/smpi/smpitools.sh index 835cd595d0..17eb6f4acf 100644 --- a/src/smpi/smpitools.sh +++ b/src/smpi/smpitools.sh @@ -27,18 +27,28 @@ mymktemp () { # Add a word to the end of a list (words separated by LISTSEP) # $1: list, $2...: words to add list_add () { - local list content + local list content newcontent list="$1" shift - eval content=\"\${$list}\" - IFS="$LISTSEP" - if [ -z "$content" ]; then - content="$*" - else - content="$content${LISTSEP}$*" + if [ $# -gt 0 ]; then + eval content=\"\${$list}\" + IFS="$LISTSEP" + newcontent="$*" + IFS="$SAVEIFS" + if [ -z "$content" ]; then + content="$newcontent" + else + content="$content${LISTSEP}$newcontent" + fi + eval $list=\"\${content}\" + fi +} + +# Like list_add, but only if first word to add ($2) is not empty +list_add_not_empty () { + if [ -n "$2" ]; then + list_add "$@" fi - IFS="$SAVEIFS" - eval $list=\"\${content}\" } # Set contents of a list (words separated by LISTSEP)