diff options
author | unknown <lenz@mysql.com> | 2003-10-16 22:15:36 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2003-10-16 22:15:36 +0200 |
commit | de01431b1897b2d93e884fe18310b9a3cf3f31b9 (patch) | |
tree | db41f86bef40af48ecb967df2e7a3dcbc60fe539 /scripts | |
parent | 8ddb4b7c553508fbf48fb3026909a35bac98d32e (diff) | |
download | mariadb-git-de01431b1897b2d93e884fe18310b9a3cf3f31b9.tar.gz |
- fixed small typo to resolve "test: argument expected" error on Solaris
and Tru64 when running "mysql_install_db"
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mysql_install_db.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mysql_install_db.sh b/scripts/mysql_install_db.sh index 5a6b11fb19b..ba95ff3b5b9 100644 --- a/scripts/mysql_install_db.sh +++ b/scripts/mysql_install_db.sh @@ -136,7 +136,7 @@ then fi fi -if test "$ip_only" ="1" +if test "$ip_only" = "1" then ip=`echo "$resolved" | awk '/ /{print $6}'` hostname=$ip |