]> granicus.if.org Git - icu/commitdiff
ICU-9686 fix to icurun
authorSteven R. Loomis <srl@icu-project.org>
Fri, 19 Oct 2012 23:14:38 +0000 (23:14 +0000)
committerSteven R. Loomis <srl@icu-project.org>
Fri, 19 Oct 2012 23:14:38 +0000 (23:14 +0000)
X-SVN-Rev: 32683

tools/scripts/icurun

index 82aa22f7a547c103d1fe72d48662c01d2c644c2e..deacd6f26b427b83b396a4ffdb7e048c735d6044 100755 (executable)
@@ -4,6 +4,9 @@
 #
 # This is designed for building and running single-source-file ICU programs.
 #
+# You can always download the latest from http://source.icu-project.org/repos/icu/tools/trunk/scripts/icurun
+# Or, as an unofficial link, http://bit.ly/icu-run
+#
 # In its simplest usage,  simply type:
 #
 #     icurun  yourprogram.c 
@@ -67,21 +70,21 @@ then
         exit 1
 fi
 
-if [ "$1" == "-?" -o $1 == "-h" ];
+if [ "$1" = "-?" -o $1 = "-h" ];
 then
         usage
         exit 0
 fi
 
 
-if [ $1 == "-i" ];
+if [ $1 = "-i" ];
 then
         shift
         ICU_OVERRIDE=$1
         shift
 fi
 
-if [ $1 == "-O" ];
+if [ $1 = "-O" ];
 then
     shift
     XTRA_OPTS=$1