summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-09-06 06:44:43 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-09-06 06:44:43 +0000
commit3d90ed43f1620cd62f766aa56b716fa250484045 (patch)
tree88922dd80817fb4fc4f46840851525fd5abfa304
parentd0cd07237ae7ce0c9a074ec3215a836947e75e53 (diff)
downloadrockbox-3d90ed43f1620cd62f766aa56b716fa250484045.tar.gz
rockbox-3d90ed43f1620cd62f766aa56b716fa250484045.zip
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
-rwxr-xr-xtools/configure8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/configure b/tools/configure
index 904af6c388..8fe0c6a4f5 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)"