From 72f54337d64c84c5a9ead3b18980e390888ce294 Mon Sep 17 00:00:00 2001 From: Robert Hak Date: Tue, 13 Aug 2002 08:40:40 +0000 Subject: case issue with questions git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1702 a1c6a512-1295-4272-9138-f99709370657 --- tools/configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/configure b/tools/configure index 6db43ea30c..4222b7950d 100755 --- a/tools/configure +++ b/tools/configure @@ -185,12 +185,12 @@ if [ "-" = "$extra_defines" ]; then echo "Loadable fonts support? (N)" getit=`input`; - if [ "y" = "$getit" ] ; then + if [ "y" = "$getit" -o "Y" = "$getit" ] ; then extra_defines="-DLOADABLE_FONTS" else echo "Proportional font support? (N)" getit=`input`; - if [ "y" = "$getit" ] ; then + if [ "y" = "$getit" -o "Y" = "$getit" ] ; then extra_defines="-DLCD_PROPFONTS" else extra_defines="" -- cgit v1.2.3