diff options
author | Robert Hak <adiamas@rockbox.org> | 2002-08-13 08:40:40 +0000 |
---|---|---|
committer | Robert Hak <adiamas@rockbox.org> | 2002-08-13 08:40:40 +0000 |
commit | 72f54337d64c84c5a9ead3b18980e390888ce294 (patch) | |
tree | 00ca4d656754715e43bf780ca73b25f072434d7c /tools | |
parent | 440022e5be2d99e51f975eecefeb598c05c7881e (diff) |
case issue with questions
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1702 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/configure | 4 |
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 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="" |