Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bashism -- (fix https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=772329 )
[simgrid.git] / src / smpi / smpirun.in
index 5b588bf..67e4624 100755 (executable)
@@ -343,9 +343,9 @@ if [ -n "${HAVE_SEQ}" ]; then
     SEQ=`${HAVE_SEQ} 0 $((${NUMPROCS}-1))`
 else
     cnt=0
-    while (( $cnt < ${NUMPROCS} )) ; do
-       SEQ="$SEQ $cnt"
-       cnt=$((cnt + 1));
+    while [ $cnt -lt ${NUMPROCS} ] ; do
+        SEQ="$SEQ $cnt"
+        cnt=$((cnt + 1));
     done
 fi