mariadb/BUILD/compile-pentium-debug
unknown 9cc4031808 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
2007-04-10 17:50:43 +02:00

14 lines
324 B
Bash
Executable file

#! /bin/sh
path=`dirname $0`
set -- "$@" --with-debug=full
. "$path/SETUP.sh"
extra_flags="$pentium_cflags $debug_cflags"
c_warnings="$c_warnings $debug_extra_warnings"
cxx_warnings="$cxx_warnings $debug_extra_warnings"
extra_configs="$pentium_configs $debug_configs "
extra_configs="$extra_configs"
. "$path/FINISH.sh"