summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
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
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=""