BUG#27701 don't pass arguments to sourced script if they're not modified as...

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).
parent a4f292fd
#! /bin/sh
path=`dirname $0`
. "$path/SETUP.sh" $@
. "$path/SETUP.sh"
extra_flags="$pentium_cflags $fast_cflags"
extra_configs="$pentium_configs $static_link"
......
#! /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"
......
#! /bin/sh
path=`dirname $0`
. "$path/SETUP.sh" $@
. "$path/SETUP.sh"
extra_flags="$pentium64_cflags $fast_cflags"
extra_configs="$pentium_configs $static_link"
......
#! /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"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment