List:Commits« Previous MessageNext Message »
From:kent Date:July 3 2006 2:44pm
Subject:bk commit into 5.0 tree (kent:1.2217)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of mysqldev. When mysqldev 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.2217 06/07/03 16:44:17 kent@stripped +3 -0
  mwldnlm, mwccnlm, mwasmnlm:
    Use Perl for filtering, do more filtering

  netware/BUILD/mwldnlm
    1.6 06/07/03 16:44:03 kent@stripped +4 -1
    Use Perl for filtering, do more filtering

  netware/BUILD/mwccnlm
    1.6 06/07/03 16:44:03 kent@stripped +4 -1
    Use Perl for filtering, do more filtering

  netware/BUILD/mwasmnlm
    1.6 06/07/03 16:44:03 kent@stripped +4 -1
    Use Perl for filtering, do more filtering

# 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:	kent
# Host:	suse9-x86.mysql.com
# Root:	/data0/mydev/mysql-5.0.23-build

--- 1.5/netware/BUILD/mwasmnlm	2006-07-03 10:51:00 +02:00
+++ 1.6/netware/BUILD/mwasmnlm	2006-07-03 16:44:03 +02:00
@@ -5,4 +5,7 @@
 
 args=" $*"
 
-wine --debugmsg -all -- mwasmnlm $args 2>&1 | sed -e 's/^[[:cntrl:]].*[[:cntrl:]]>//'
+# NOTE: Option 'pipefail' is not standard sh
+set -o pipefail
+wine --debugmsg -all -- mwasmnlm $args | \
+perl -pe 's/\r//g; s/^\e.*\e(\[J|>)?//; s/[[^:print:]]//g'

--- 1.5/netware/BUILD/mwccnlm	2006-07-03 10:51:00 +02:00
+++ 1.6/netware/BUILD/mwccnlm	2006-07-03 16:44:03 +02:00
@@ -7,4 +7,7 @@
 # convert it to "-I../include"
 args=" "`echo $* | sed -e 's/-I.\/../-I../g'`
 
-wine --debugmsg -all -- mwccnlm $args 2>&1 | sed -e 's/^[[:cntrl:]].*[[:cntrl:]]>//'
+# NOTE: Option 'pipefail' is not standard sh
+set -o pipefail
+wine --debugmsg -all -- mwccnlm $args | \
+perl -pe 's/\r//g; s/^\e.*\e(\[J|>)?//; s/[[^:print:]]//g'

--- 1.5/netware/BUILD/mwldnlm	2006-07-03 10:51:00 +02:00
+++ 1.6/netware/BUILD/mwldnlm	2006-07-03 16:44:03 +02:00
@@ -5,4 +5,7 @@
 
 args=" $*"
 
-wine --debugmsg -all -- mwldnlm $args 2>&1 | sed -e 's/^[[:cntrl:]].*[[:cntrl:]]>//'
+# NOTE: Option 'pipefail' is not standard sh
+set -o pipefail
+wine --debugmsg -all -- mwldnlm $args | \
+perl -pe 's/\r//g; s/^\e.*\e(\[J|>)?//; s/[[^:print:]]//g'
Thread
bk commit into 5.0 tree (kent:1.2217)kent3 Jul