List:Commits« Previous MessageNext Message »
From:msvensson Date:October 23 2006 12:56pm
Subject:bk commit into 5.0 tree (msvensson:1.2326)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of msvensson. When msvensson 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@stripped, 2006-10-23 12:56:25+02:00, msvensson@neptunus.(none) +1 -0
  When looking for libc the path need to be converted from wine to unix format before test
that directory exists

  netware/BUILD/mwenv@stripped, 2006-10-23 12:56:20+02:00, msvensson@neptunus.(none) +2 -2
    When looking for libc the path need to be converted from wine to unix format before
test that directory exists

# 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:	msvensson
# Host:	neptunus.(none)
# Root:	/home/msvensson/mysql/mysql-5.0-maint

--- 1.17/netware/BUILD/mwenv	2006-10-23 12:56:42 +02:00
+++ 1.18/netware/BUILD/mwenv	2006-10-23 12:56:42 +02:00
@@ -27,8 +27,8 @@
 echo "WINE_BUILD_DIR: $WINE_BUILD_DIR"
 
 # Look for libc, MySQL 5.0.x uses libc-2003 by default
-libcdir="$MYDEV/libc-2003"
-if test ! -d $libcdir
+libc_dir="$MYDEV/libc-2003"
+if [ ! -d `winepath $libc_dir` ]
 then
   # The libcdir didn't exist, set default
   libc_dir="$MYDEV/libc"
Thread
bk commit into 5.0 tree (msvensson:1.2326)msvensson23 Oct