diff options
author | unknown <df@pippilotta.erinye.com> | 2007-04-10 17:50:43 +0200 |
---|---|---|
committer | unknown <df@pippilotta.erinye.com> | 2007-04-10 17:50:43 +0200 |
commit | 9cc4031808d8338b3c08d7d6cc947bb181f3fe55 (patch) | |
tree | da32891006c3b365d5e08d4bf6a24a845819a68a /BUILD/compile-pentium-debug | |
parent | e6e1ce7abca03736a4c1fb187ce522ef6d817bb9 (diff) | |
download | mariadb-git-9cc4031808d8338b3c08d7d6cc947bb181f3fe55.tar.gz |
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-max-no-ndb:
correctly pass arguments to sourced script
BUILD/compile-pentium-debug-max:
correctly pass arguments to sourced script
BUILD/compile-pentium-debug:
correctly pass arguments to sourced script
BUILD/compile-pentium64-debug-max:
correctly pass arguments to sourced script
BUILD/compile-pentium64-debug:
correctly pass arguments to sourced script
Diffstat (limited to 'BUILD/compile-pentium-debug')
-rwxr-xr-x | BUILD/compile-pentium-debug | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/BUILD/compile-pentium-debug b/BUILD/compile-pentium-debug index 7957caead29..e31cb59a8a4 100755 --- a/BUILD/compile-pentium-debug +++ b/BUILD/compile-pentium-debug @@ -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" |