diff options
| author | Robert Hak <adiamas@rockbox.org> | 2002-08-31 22:49:41 +0000 |
|---|---|---|
| committer | Robert Hak <adiamas@rockbox.org> | 2002-08-31 22:49:41 +0000 |
| commit | 7dcdf05d9405e7d3f72c5141917612685635fe1d (patch) | |
| tree | 6b20ba80ec7c60247e2ddf151525bbd7a1b05608 /tools | |
| parent | 15c5cac72198bdae8157924f9aba1b4249aad8c5 (diff) | |
| download | rockbox-7dcdf05d9405e7d3f72c5141917612685635fe1d.zip rockbox-7dcdf05d9405e7d3f72c5141917612685635fe1d.tar.gz rockbox-7dcdf05d9405e7d3f72c5141917612685635fe1d.tar.bz2 rockbox-7dcdf05d9405e7d3f72c5141917612685635fe1d.tar.xz | |
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-x | tools/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/configure b/tools/configure index b8b2f31..3d654f9 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)" |