global: Small fixes to asm scripts ("==" problem)
[h316.git] / bin / asm_original
index bc3f9595bcef1045c5ce5c55806bed089eeb1cbb..d173211b478e1020cd9ac0d21049eae8c2221645 100755 (executable)
@@ -9,7 +9,7 @@ fi
 echo -en "Assembler (Original): Translating \"$1\":"
 
 for n in $*; do
-  if [ $n == "/v" ]; then
+  if [ $n = "/v" ]; then
     VERBOSE=yes
   fi
 done
@@ -39,7 +39,7 @@ go
 quit 
 EOF
 
-if [ "$VERBOSE" == "yes" ]; then
+if [ "$VERBOSE" = "yes" ]; then
   h316 $name.go 
 else
   h316 $name.go > /dev/null