summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiklas Guertler <profclonk@gmail.com>2020-09-30 09:58:47 +0200
committerAkira TAGOH <akira@tagoh.org>2020-11-28 01:16:36 +0000
commit25845543286c345c80b4dc9c37bcf5e461cf5900 (patch)
tree14ebef5619a8b15c04210926b6830e539fff6ab5
parentbc84228a2e00b7ef4d7641fcfd0c08340828819b (diff)
Add <dir> XML tags to default values for FC_DEFAULT_FONTS on non-Darwin systems
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 4b53495..debdcef 100644
--- a/meson.build
+++ b/meson.build
@@ -212,8 +212,8 @@ else
conf.set_quoted('FC_DEFAULT_FONTS', '<dir>/System/Library/Fonts</dir> <dir>/Library/Fonts</dir> <dir>~/Library/Fonts</dir> <dir>/System/Library/Assets/com_apple_MobileAsset_Font3</dir> <dir>/System/Library/Assets/com_apple_MobileAsset_Font4</dir>')
fonts_conf.set('FC_DEFAULT_FONTS', '<dir>/System/Library/Fonts</dir> <dir>/Library/Fonts</dir> <dir>~/Library/Fonts</dir> <dir>/System/Library/Assets/com_apple_MobileAsset_Font3</dir> <dir>/System/Library/Assets/com_apple_MobileAsset_Font4</dir>')
else
- conf.set_quoted('FC_DEFAULT_FONTS', '/usr/share/fonts')
- fonts_conf.set('FC_DEFAULT_FONTS', '/usr/share/fonts')
+ conf.set_quoted('FC_DEFAULT_FONTS', '<dir>/usr/share/fonts</dir>')
+ fonts_conf.set('FC_DEFAULT_FONTS', '<dir>/usr/share/fonts</dir>')
endif
fc_cachedir = join_paths(prefix, get_option('localstatedir'), 'cache', meson.project_name())
thread_dep = dependency('threads')