summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
authorRobert Hak <adiamas@rockbox.org>2002-08-31 22:49:41 +0000
committerRobert Hak <adiamas@rockbox.org>2002-08-31 22:49:41 +0000
commit7dcdf05d9405e7d3f72c5141917612685635fe1d (patch)
tree6b20ba80ec7c60247e2ddf151525bbd7a1b05608 /tools/configure
parent15c5cac72198bdae8157924f9aba1b4249aad8c5 (diff)
downloadrockbox-7dcdf05d9405e7d3f72c5141917612685635fe1d.tar.gz
rockbox-7dcdf05d9405e7d3f72c5141917612685635fe1d.zip
cleaned up USE_SCREENSAVERS questions/usage
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2099 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/configure b/tools/configure
index b8b2f31e49..3d654f9664 100755
--- a/tools/configure
+++ b/tools/configure
@@ -188,10 +188,10 @@ if [ "-" = "$extra_defines" ]; then
188 188
189 echo "Do you want to make use of Screensavers? (Y)" 189 echo "Do you want to make use of Screensavers? (Y)"
190 getit=`input`; 190 getit=`input`;
191 if [ "n" != "$getit" ] ; then 191 if [ "n" = "$getit" -o "N" = "$getit" ] ; then
192 if [ "N" != "$getit" ] ; then 192 extra_defines=""
193 else
193 extra_defines="-DUSE_SCREENSAVERS" 194 extra_defines="-DUSE_SCREENSAVERS"
194 fi
195 fi 195 fi
196 196
197 echo "Loadable fonts support? (N)" 197 echo "Loadable fonts support? (N)"