Remove the debug print in fc-query. (#1509790)

This commit is contained in:
Akira TAGOH 2017-11-08 15:01:00 +09:00
parent ce2cb4fb5d
commit d261f1511d

View File

@ -3,7 +3,7 @@
Summary: Font configuration and customization library
Name: fontconfig
Version: 2.12.6
Release: 3%{?dist}
Release: 4%{?dist}
# src/ftglue.[ch] is in Public Domain
# src/fccache.c contains Public Domain code
# fc-case/CaseFolding.txt is in the UCD
@ -18,6 +18,8 @@ Source2: fc-cache
Patch0: %{name}-sleep-less.patch
# https://bugzilla.redhat.com/show_bug.cgi?id=1496761
Patch1: %{name}-emoji.patch
# https://bugzilla.redhat.com/show_bug.cgi?id=1509790
Patch2: %{name}-remove-debug-print-in-fc-query.patch
BuildRequires: expat-devel
BuildRequires: freetype-devel >= %{freetype_version}
@ -63,6 +65,7 @@ which is useful for developing applications that uses fontconfig.
%setup -q
%patch0 -p1 -b .sleep-less
%patch1 -p1 -b .emoji
%patch2 -p1 -b .fc-query
%build
# We don't want to rebuild the docs, but we want to install the included ones.
@ -154,6 +157,9 @@ HOME=/root /usr/bin/fc-cache -s
%doc fontconfig-devel.txt fontconfig-devel
%changelog
* Wed Nov 8 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.6-4
- Remove the debug print in fc-query. (#1509790)
* Thu Oct 5 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.6-3
- Backport a patch to change the order of the emoji fonts. (#1496761)