diff options
author | Johannes Schickel | 2013-01-26 15:21:44 +0100 |
---|---|---|
committer | Johannes Schickel | 2013-01-26 15:27:34 +0100 |
commit | 3a7627812d9ce50408ec4eab2381e8072c733bf1 (patch) | |
tree | 58ea2488b2648256931ba8110447711462a1298e /configure | |
parent | 69424b71bd027e4eb29ecadaca5271c5d677cac3 (diff) | |
download | scummvm-rg350-3a7627812d9ce50408ec4eab2381e8072c733bf1.tar.gz scummvm-rg350-3a7627812d9ce50408ec4eab2381e8072c733bf1.tar.bz2 scummvm-rg350-3a7627812d9ce50408ec4eab2381e8072c733bf1.zip |
CONFIGURE: Never enable release_build by default.
This changes the default for Caanoo, GP2x, GP2xWiz, OpenPandora and PS2.
For those now we only disable debug symbols and enable optimizations by
default.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -1425,15 +1425,10 @@ fi case $_host in caanoo | gp2x | gp2xwiz | openpandora | ps2) if test "$_debug_build" = auto; then - # If you want to debug one of these platforms, use '--disable-release --enable-debug' + # If you want to debug one of these platforms, use '--disable-optimizations --enable-debug' _debug_build=no fi - if test "$_release_build" = auto; then - # Enable release build by default. - _release_build=yes - fi - if test "$_optimizations" = auto; then # Enable optimizations by default. _optimizations=yes |