List:Commits« Previous MessageNext Message »
From:Daniel Fischer Date:April 10 2007 3:50pm
Subject:bk commit into 5.0 tree (df:1.2437) BUG#27701
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of df. When df 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, 2007-04-10 17:50:43+02:00, df@stripped +5 -0
  BUG#27701 Arguments to some compile-pentium* scripts were not properly passed to SETUP.sh. Besides the old way not working with some shells, single arguments that contained whitespace were also broken up. This patch tries to fix both errors.

  BUILD/compile-pentium-debug@stripped, 2007-04-10 17:50:41+02:00, df@stripped +2 -1
    correctly pass arguments to sourced script

  BUILD/compile-pentium-debug-max@stripped, 2007-04-10 17:50:41+02:00, df@stripped +2 -1
    correctly pass arguments to sourced script

  BUILD/compile-pentium-debug-max-no-ndb@stripped, 2007-04-10 17:50:41+02:00, df@stripped +2 -1
    correctly pass arguments to sourced script

  BUILD/compile-pentium64-debug@stripped, 2007-04-10 17:50:41+02:00, df@stripped +2 -1
    correctly pass arguments to sourced script

  BUILD/compile-pentium64-debug-max@stripped, 2007-04-10 17:50:41+02:00, df@stripped +2 -1
    correctly pass arguments to sourced script

# 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:	df
# Host:	pippilotta.erinye.com
# Root:	/shared/home/df/mysql/build/mysql-5.0-build-work-27701

--- 1.32/BUILD/compile-pentium-debug	2005-02-05 15:05:42 +01:00
+++ 1.33/BUILD/compile-pentium-debug	2007-04-10 17:50:41 +02:00
@@ -1,7 +1,8 @@
 #! /bin/sh
 
 path=`dirname $0`
-. "$path/SETUP.sh" $@ --with-debug=full
+set -- "$@" --with-debug=full
+. "$path/SETUP.sh"
 
 extra_flags="$pentium_cflags $debug_cflags"
 c_warnings="$c_warnings $debug_extra_warnings"

--- 1.1/BUILD/compile-pentium64-debug-max	2005-11-03 10:18:14 +01:00
+++ 1.2/BUILD/compile-pentium64-debug-max	2007-04-10 17:50:41 +02:00
@@ -1,7 +1,8 @@
 #! /bin/sh
 
 path=`dirname $0`
-. "$path/SETUP.sh" $@ --with-debug=full
+set -- "$@" --with-debug=full
+. "$path/SETUP.sh"
 
 extra_flags="$pentium64_cflags $debug_cflags $max_cflags"
 c_warnings="$c_warnings $debug_extra_warnings"

--- 1.2/BUILD/compile-pentium64-debug	2005-01-26 15:07:50 +01:00
+++ 1.3/BUILD/compile-pentium64-debug	2007-04-10 17:50:41 +02:00
@@ -1,7 +1,8 @@
 #! /bin/sh
 
 path=`dirname $0`
-. "$path/SETUP.sh" $@ --with-debug=full
+set -- "$@" --with-debug=full
+. "$path/SETUP.sh"
 
 extra_flags="$pentium64_cflags $debug_cflags"
 c_warnings="$c_warnings $debug_extra_warnings"

--- 1.1/BUILD/compile-pentium-debug-max-no-ndb	2005-09-29 22:45:29 +02:00
+++ 1.2/BUILD/compile-pentium-debug-max-no-ndb	2007-04-10 17:50:41 +02:00
@@ -1,7 +1,8 @@
 #! /bin/sh
 
 path=`dirname $0`
-. "$path/SETUP.sh" $@ --with-debug=full
+set -- "$@" --with-debug=full
+. "$path/SETUP.sh"
 
 extra_flags="$pentium_cflags $debug_cflags $max_cflags"
 c_warnings="$c_warnings $debug_extra_warnings"

--- 1.18/BUILD/compile-pentium-debug-max	2007-03-27 12:06:38 +02:00
+++ 1.19/BUILD/compile-pentium-debug-max	2007-04-10 17:50:41 +02:00
@@ -1,7 +1,8 @@
 #! /bin/sh
 
 path=`dirname $0`
-. "$path/SETUP.sh" $@ --with-debug=full
+set -- "$@" --with-debug=full
+. "$path/SETUP.sh"
 
 extra_flags="$pentium_cflags $debug_cflags $max_cflags"
 c_warnings="$c_warnings $debug_extra_warnings"
Thread
bk commit into 5.0 tree (df:1.2437) BUG#27701Daniel Fischer10 Apr