Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bashism -- (fix https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=772329 )
authordegomme <degomme@localhost.localdomain>
Mon, 8 Dec 2014 22:37:07 +0000 (23:37 +0100)
committerdegomme <degomme@localhost.localdomain>
Mon, 8 Dec 2014 23:09:23 +0000 (00:09 +0100)
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