summaryrefslogtreecommitdiffstats
path: root/tools
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 /tools
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
Diffstat (limited to 'tools')
-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
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=""