List:Commits« Previous MessageNext Message »
From:kent Date:July 24 2006 10:55am
Subject:bk commit into 4.0 tree (kent:1.2188)
View as plain text  
Below is the list of changes that have just been committed into a local
4.0 repository of kent. When kent 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-07-24 10:55:26+02:00, kent@stripped +3 -0
  mwasmnlm, mwccnlm, mwldnlm:
    Filter out strange control characters, messes up logs

  netware/BUILD/mwasmnlm@stripped, 2006-07-24 10:55:09+02:00, kent@stripped +4 -1
    Filter out strange control characters, messes up logs

  netware/BUILD/mwccnlm@stripped, 2006-07-24 10:55:09+02:00, kent@stripped +4 -1
    Filter out strange control characters, messes up logs

  netware/BUILD/mwldnlm@stripped, 2006-07-24 10:55:09+02:00, kent@stripped +4 -1
    Filter out strange control characters, messes up logs

# 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:	c-4b4072d5.010-2112-6f72651.cust.bredbandsbolaget.se
# Root:	/Users/kent/mysql/bk/mysql-4.0

--- 1.3/netware/BUILD/mwasmnlm	2006-07-24 10:55:31 +02:00
+++ 1.4/netware/BUILD/mwasmnlm	2006-07-24 10:55:31 +02:00
@@ -5,4 +5,7 @@
 
 args=" $*"
 
-wine --debugmsg -all -- mwasmnlm $args
+# 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.3/netware/BUILD/mwccnlm	2006-07-24 10:55:31 +02:00
+++ 1.4/netware/BUILD/mwccnlm	2006-07-24 10:55:31 +02:00
@@ -7,4 +7,7 @@
 # convert it to "-I../include"
 args=" "`echo $* | sed -e 's/-I.\/../-I../g'`
 
-wine --debugmsg -all -- mwccnlm $args
+# 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.3/netware/BUILD/mwldnlm	2006-07-24 10:55:31 +02:00
+++ 1.4/netware/BUILD/mwldnlm	2006-07-24 10:55:31 +02:00
@@ -5,4 +5,7 @@
 
 args=" $*"
 
-wine --debugmsg -all -- mwldnlm $args
+# 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 4.0 tree (kent:1.2188)kent24 Jul