summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-09-19 08:27:38 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-09-19 08:27:38 +0000
commita316213f0fe669b3d956a6936fabd94904a36bb4 (patch)
tree4c502201f5f5bcb7840c961861a08c9d820c4c8e
parentd2d2ecc310614e70d813779582b2079fcbfca35f (diff)
downloadrockbox-a316213f0fe669b3d956a6936fabd94904a36bb4.tar.gz
rockbox-a316213f0fe669b3d956a6936fabd94904a36bb4.zip
Fixed DISABLE_DEMOS
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2331 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure
index 5f5ca514b7..d5d20b3a12 100755
--- a/tools/configure
+++ b/tools/configure
@@ -211,10 +211,10 @@ if [ "-" = "$extra_defines" ]; then
211 211
212 if [ "-DARCHOS_RECORDER" = "$target" ] ; then 212 if [ "-DARCHOS_RECORDER" = "$target" ] ; then
213 213
214 echo "Do you want to use Screensavers? (Y)" 214 echo "Do you want to use Demos? (Y)"
215 getit=`input`; 215 getit=`input`;
216 if [ "n" = "$getit" -o "N" = "$getit" ] ; then 216 if [ "n" = "$getit" -o "N" = "$getit" ] ; then
217 extra_defines="$extra_defines -DDISABLE_SCREENSAVERS" 217 extra_defines="$extra_defines -DDISABLE_DEMOS"
218 else 218 else
219 extra_defines="$extra_defines" 219 extra_defines="$extra_defines"
220 fi 220 fi