Use '=' instead of '==' in /bin/sh scripts to avoid portability
problems.

diff --git a/tools/findfunc b/tools/findfunc
index 98fd6ce..111aaba 100755
--- a/tools/findfunc
+++ b/tools/findfunc
@@ -1,6 +1,6 @@
 #!/bin/sh
 name="$1"
-if [ "$name" == "" ] ; then
+if [ "$name" = "" ] ; then
     echo -n 'Function: '
     read name;
 fi
diff --git a/tools/font_convert.sh b/tools/font_convert.sh
index 51e784b..635acb1 100755
--- a/tools/font_convert.sh
+++ b/tools/font_convert.sh
@@ -109,7 +109,7 @@
 done;
 
 for i in *.bdf; do
-    if [ "$i" == "*.bdf" ]; then
+    if [ "$i" = "*.bdf" ]; then
        echo "No fonts extracted"; rm -rf "$TMPDIR"; exit 0; 
     fi;
     bdftopcf "$i" | gzip -c > ${i%.???}.pcf.gz;