Comment 3 for bug 56682

Revision history for this message
Patrice Vetsel (vetsel-patrice) wrote :

in debian/fontconfig-config.config we have :
if [ ! -f "/etc/fonts/fonts.conf" ]; then
  # This is a first install
  enable_bitmaps="false"
else
  # We are upgrading. No file for bitmaps means:
  enable_bitmaps="true"
fi

I suspect that we have to remove the else loop like this :
if [ ! -f "/etc/fonts/fonts.conf" ]; then
  # This is a first install
  enable_bitmaps="false"
fi