diff options
author | Ryan Schmidt <git@ryandesign.com> | 2021-07-08 15:45:18 -0500 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2021-10-05 08:51:52 +0000 |
commit | 889097353ecd7b061ae7cf677e3db56db77a135f (patch) | |
tree | fd904c851272ac9e543d430856c3fd34bc614afb /Makefile.am | |
parent | 6e414d61c77b2e6c08d0694ae61b848ee836b7eb (diff) |
Fix FC_DEFAULT_FONTS on macOS and with BSD sed
Fix processing of FC_DEFAULT_FONTS when it contains multiple comma-
separated values (i.e. on macOS/Darwin) and fix inserting it into
fonts.conf when using BSD sed.
Fixes https://gitlab.freedesktop.org/fontconfig/fontconfig/-/issues/287
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 1ef3669..2f75fc9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -114,7 +114,7 @@ FC_CONFIGDIR = $(subst $(BASECONFIGDIR)/,,$(CONFIGDIR)) fonts.conf: fonts.conf.in Makefile sed \ -e 's,@FC_CACHEDIR\@,$(FC_CACHEDIR),g' \ - -e 's,@FC_DEFAULT_FONTS\@,$(FC_DEFAULT_FONTS),g' \ + -e 's,@FC_DEFAULT_FONTS\@, $(FC_DEFAULT_FONTS),g' \ -e 's,@FC_FONTPATH\@,$(FC_FONTPATH),g' \ -e 's,@CONFIGDIR\@,$(FC_CONFIGDIR),g' \ -e 's,@PACKAGE\@,$(PACKAGE),g' \ |