commit | 4e422766fdb49dbc31a99d71f583ff791ca6f0fd | [log] [tgz] |
---|---|---|
author | Francois Gouget <fgouget@free.fr> | Tue Dec 14 11:39:14 2004 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue Dec 14 11:39:14 2004 +0000 |
tree | c8bfb02288de3f5998a9907e46eb27ef0d32db62 | |
parent | 1493433e38a65de84142e40260246bc88ed39987 [diff] [blame] |
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