summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)"