summaryrefslogtreecommitdiffstats
path: root/tools
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
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')
-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
echo "Do you want to make use of Screensavers? (Y)"
getit=`input`;
- if [ "n" != "$getit" ] ; then
- if [ "N" != "$getit" ] ; then
+ if [ "n" = "$getit" -o "N" = "$getit" ] ; then
+ extra_defines=""
+ else
extra_defines="-DUSE_SCREENSAVERS"
- fi
fi
echo "Loadable fonts support? (N)"