diff options
author | konstantin@mysql.com <> | 2006-04-05 17:50:33 +0400 |
---|---|---|
committer | konstantin@mysql.com <> | 2006-04-05 17:50:33 +0400 |
commit | 59f20d290fb07982b8c7672d9d767768e53db9c2 (patch) | |
tree | bf8d13acaa2e22212aefa5c25c28e091cf91698c /BUILD/compile-pentium-debug | |
parent | d26cf9f2c844095fa868679dff49ccf37ccc9cd7 (diff) | |
download | mariadb-git-59f20d290fb07982b8c7672d9d767768e53db9c2.tar.gz |
Remove dead code from BUILD/ scripts: $debug_extra_warnings is
never defined.
It was used at some point to add -Wuninitialized to debug flags,
but not any more. If there is still need to add -Wunitialized,
it can be added directly to $global_warnings.
Diffstat (limited to 'BUILD/compile-pentium-debug')
-rwxr-xr-x | BUILD/compile-pentium-debug | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/BUILD/compile-pentium-debug b/BUILD/compile-pentium-debug index 7957caead29..db2bbea02f4 100755 --- a/BUILD/compile-pentium-debug +++ b/BUILD/compile-pentium-debug @@ -4,10 +4,6 @@ path=`dirname $0` . "$path/SETUP.sh" $@ --with-debug=full 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" +extra_configs="$pentium_configs $debug_configs" . "$path/FINISH.sh" |