diff options
| -rwxr-xr-x | tools/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure index 6db43ea..4222b79 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="" |