List:Internals« Previous MessageNext Message »
From:Joerg Bruehe Date:June 16 2005 11:44am
Subject:bk commit into 5.0 tree (joerg:1.1949) BUG#11007
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of joerg. When joerg 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://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.1949 05/06/16 13:44:08 joerg@stripped +1 -0
  "configure.in": Correct equality comparison: In shell 'test', it is single '=' (bug#11007).

  configure.in
    1.315 05/06/16 13:44:04 joerg@stripped +1 -1
    Correct equality comparison: In shell 'test', it is single '=' (bug#11007).

# 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:	joerg
# Host:	trift2.
# Root:	/M50/push-5.0

--- 1.314/configure.in	Fri Jun 10 04:27:41 2005
+++ 1.315/configure.in	Thu Jun 16 13:44:04 2005
@@ -2273,7 +2273,7 @@
   [if test "x${withval}" != "xno"; then
     tools_dirs="$tools_dirs server-tools"
    fi],
-  [if test "x${with_server}" == "xyes"; then
+  [if test "x${with_server}" = "xyes"; then
      tools_dirs="$tools_dirs server-tools"
    fi]
 )
Thread
bk commit into 5.0 tree (joerg:1.1949) BUG#11007Joerg Bruehe16 Jun