diff options
author | unknown <df@pippilotta.erinye.com> | 2007-04-11 14:12:00 +0200 |
---|---|---|
committer | unknown <df@pippilotta.erinye.com> | 2007-04-11 14:12:00 +0200 |
commit | 07fca88e07bb5104346109eca8fdfa369bd69db7 (patch) | |
tree | a365eb879ae158a868507016cb1e636b14872608 /BUILD | |
parent | 6b69068d6d37b471697aad662f875f796a955c1d (diff) | |
download | mariadb-git-07fca88e07bb5104346109eca8fdfa369bd69db7.tar.gz |
BUG#27701 don't pass arguments to sourced script if they're not modified as this is either a no-op (if done correctly), a different no-op with some shells (if done the bash way, but with correct quoting) or breaks arguments with whitespace for some shells (if done the bash way, without quotes).
BUILD/compile-pentium-valgrind-max:
remove no-op
BUILD/compile-pentium64-max:
remove bad things
BUILD/compile-pentium64:
remove bad things
BUILD/compile-pentium:
remove bad things
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/compile-pentium | 2 | ||||
-rwxr-xr-x | BUILD/compile-pentium-valgrind-max | 2 | ||||
-rwxr-xr-x | BUILD/compile-pentium64 | 2 | ||||
-rwxr-xr-x | BUILD/compile-pentium64-max | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/BUILD/compile-pentium b/BUILD/compile-pentium index 38d1ff42baf..b8f8d028e1f 100755 --- a/BUILD/compile-pentium +++ b/BUILD/compile-pentium @@ -1,7 +1,7 @@ #! /bin/sh path=`dirname $0` -. "$path/SETUP.sh" $@ +. "$path/SETUP.sh" extra_flags="$pentium_cflags $fast_cflags" extra_configs="$pentium_configs $static_link" diff --git a/BUILD/compile-pentium-valgrind-max b/BUILD/compile-pentium-valgrind-max index a2715e7c378..09cc162d2be 100755 --- a/BUILD/compile-pentium-valgrind-max +++ b/BUILD/compile-pentium-valgrind-max @@ -1,7 +1,7 @@ #! /bin/sh path=`dirname $0` -. "$path/SETUP.sh" "$@" +. "$path/SETUP.sh" extra_flags="$pentium_cflags $debug_cflags $valgrind_flags" extra_configs="$pentium_configs $debug_configs $max_configs" diff --git a/BUILD/compile-pentium64 b/BUILD/compile-pentium64 index bc6bbe4d089..3a8fad51fea 100755 --- a/BUILD/compile-pentium64 +++ b/BUILD/compile-pentium64 @@ -1,7 +1,7 @@ #! /bin/sh path=`dirname $0` -. "$path/SETUP.sh" $@ +. "$path/SETUP.sh" extra_flags="$pentium64_cflags $fast_cflags" extra_configs="$pentium_configs $static_link" diff --git a/BUILD/compile-pentium64-max b/BUILD/compile-pentium64-max index 789136a84dc..9acd5e7c460 100755 --- a/BUILD/compile-pentium64-max +++ b/BUILD/compile-pentium64-max @@ -1,7 +1,7 @@ #! /bin/sh path=`dirname $0` -. "$path/SETUP.sh" $@ +. "$path/SETUP.sh" extra_flags="$pentium64_cflags $fast_cflags" extra_configs="$pentium_configs $max_configs $static_link" |