summaryrefslogtreecommitdiff
path: root/BUILD/compile-pentium64-debug-max
diff options
context:
space:
mode:
authorunknown <df@pippilotta.erinye.com>2007-04-10 17:50:43 +0200
committerunknown <df@pippilotta.erinye.com>2007-04-10 17:50:43 +0200
commit87f0636104726963af7d658cc129757d58e6a0b2 (patch)
treeda32891006c3b365d5e08d4bf6a24a845819a68a /BUILD/compile-pentium64-debug-max
parenteb95e97f32347eab15d350e757d84155c6afacef (diff)
downloadmariadb-git-87f0636104726963af7d658cc129757d58e6a0b2.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-pentium64-debug-max')
-rwxr-xr-xBUILD/compile-pentium64-debug-max3
1 files changed, 2 insertions, 1 deletions
diff --git a/BUILD/compile-pentium64-debug-max b/BUILD/compile-pentium64-debug-max
index f0745c88c90..656825d8494 100755
--- a/BUILD/compile-pentium64-debug-max
+++ b/BUILD/compile-pentium64-debug-max
@@ -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"