summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Hak <adiamas@rockbox.org>2002-08-13 08:40:40 +0000
committerRobert Hak <adiamas@rockbox.org>2002-08-13 08:40:40 +0000
commit72f54337d64c84c5a9ead3b18980e390888ce294 (patch)
tree00ca4d656754715e43bf780ca73b25f072434d7c
parent440022e5be2d99e51f975eecefeb598c05c7881e (diff)
downloadrockbox-72f54337d64c84c5a9ead3b18980e390888ce294.tar.gz
rockbox-72f54337d64c84c5a9ead3b18980e390888ce294.zip
case issue with questions
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1702 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure4
1 files 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
185 185
186 echo "Loadable fonts support? (N)" 186 echo "Loadable fonts support? (N)"
187 getit=`input`; 187 getit=`input`;
188 if [ "y" = "$getit" ] ; then 188 if [ "y" = "$getit" -o "Y" = "$getit" ] ; then
189 extra_defines="-DLOADABLE_FONTS" 189 extra_defines="-DLOADABLE_FONTS"
190 else 190 else
191 echo "Proportional font support? (N)" 191 echo "Proportional font support? (N)"
192 getit=`input`; 192 getit=`input`;
193 if [ "y" = "$getit" ] ; then 193 if [ "y" = "$getit" -o "Y" = "$getit" ] ; then
194 extra_defines="-DLCD_PROPFONTS" 194 extra_defines="-DLCD_PROPFONTS"
195 else 195 else
196 extra_defines="" 196 extra_defines=""