logo       
Google Custom Search
    AddThis Social Bookmark Button
-->

bk commit into 4.1 tree (1.1596): msg#00331

Subject: bk commit into 4.1 tree (1.1596)
Below is the list of changes that have just been committed into a local
4.1 repository of lenz. When lenz does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://www.mysql.com/doc/I/n/Installing_source_tree.html

ChangeSet
  1.1596 03/09/27 00:25:57 lenz@xxxxxxxxxxxxxx +1 -0
   - better test for a string to avoid "test: integer expression expected"
     if a variable is not defined (empty).

  scripts/mysql_install_db.sh
    1.51 03/09/27 00:25:52 lenz@xxxxxxxxx +3 -3
     - better test for a string to avoid "test: integer expression expected"
       if a variable is not defined (empty).

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: lenz
# Host: kallisto.local
# Root: /space/my/mysql-4.1-build

--- 1.50/scripts/mysql_install_db.sh    Thu Sep 11 19:24:10 2003
+++ 1.51/scripts/mysql_install_db.sh    Sat Sep 27 00:25:52 2003
@@ -128,7 +128,7 @@
 
 if test ! -x $mysqld
 then
-  if test "$in_rpm" -eq 1
+  if test "$in_rpm" = 1
   then
     echo "FATAL ERROR $mysqld not found!"
     exit 1
@@ -167,7 +167,7 @@
   fi
 fi
 
-if test "$ip_only" -eq 1
+if test "$ip_only" = 1
 then
   ip=`echo "$resolved" | awk '/ /{print $6}'`
   hostname=$ip
@@ -187,7 +187,7 @@
   c_d="yes"
 fi
 
-if test $verbose -eq 1
+if test $verbose = 1
 then
   create_option="verbose"
 else

-- 
MySQL Internals Mailing List
For list archives: http://lists.mysql.com/internals
To unsubscribe:    
http://lists.mysql.com/internals?unsub=gcdmd-internals@xxxxxxxxxxx




<Prev in Thread] Current Thread [Next in Thread>