From 3d90ed43f1620cd62f766aa56b716fa250484045 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 6 Sep 2002 06:44:43 +0000 Subject: Maintain this simple philosophy: Default build actions are without any flags/options. Only modiciations from default use extra defines etc. This is because: 1) We want builds that don't run configure to keep building the same kind of build it was configured to do. 2) 'configure update' must work to read the selected options and generate an updated makefile with the same options. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2203 a1c6a512-1295-4272-9138-f99709370657 --- tools/configure | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/configure b/tools/configure index 904af6c..8fe0c6a 100755 --- a/tools/configure +++ b/tools/configure @@ -214,17 +214,17 @@ if [ "-" = "$extra_defines" ]; then echo "Do you want to use Screensavers? (Y)" getit=`input`; if [ "n" = "$getit" -o "N" = "$getit" ] ; then - extra_defines="$extra_defines" + extra_defines="$extra_defines -DDISABLE_SCREENSAVERS" else - extra_defines="$extra_defines -DUSE_SCREENSAVERS" + extra_defines="$extra_defines" fi echo "Do you want to play Games? (Y)" getit=`input`; if [ "n" = "$getit" -o "N" = "$getit" ] ; then - extra_defines="$extra_defines" + extra_defines="$extra_defines -DDISABLE_GAMES" else - extra_defines="$extra_defines -DUSE_GAMES" + extra_defines="$extra_defines" fi echo "Loadable fonts support? (N)" -- cgit v1.1