------------------------------------------------------------------------
r7704 | thibault | 2012-10-19 14:41:20 +0200 (ven. 19 oct. 2012) | 1 ligne

Fix bashism
------------------------------------------------------------------------

Index: starpu/tools/starpu_workers_activity.in
===================================================================
--- starpu/tools/starpu_workers_activity.in	(révision 7703)
+++ starpu/tools/starpu_workers_activity.in	(révision 7704)
@@ -37,12 +37,12 @@
     exit 0
 }
 
-if [ "$1" == "-v" ] || [ "$1" == "--version" ] ; then
+if [ "$1" = "-v" ] || [ "$1" = "--version" ] ; then
     echo "$PROGNAME @STARPU_MAJOR_VERSION@.@STARPU_MINOR_VERSION@"
     exit 0
 fi
 
-if [ "$1" == "-h" ] || [ "$1" == "--help" ] || [ "$1" == "" ] ; then
+if [ "$1" = "-h" ] || [ "$1" = "--help" ] || [ "$1" = "" ] ; then
     usage
 fi
 
