From 5e21d7cead6571111cfb1cc06f581faf36ac348c Mon Sep 17 00:00:00 2001 From: Rmys Date: Sun, 24 Jul 2022 23:30:48 +0300 Subject: [PATCH] harfbuzz-5.0.1 --- desktop/font/harfbuzz/actions.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/desktop/font/harfbuzz/actions.py b/desktop/font/harfbuzz/actions.py index b8b6f0c53a..002746720b 100644 --- a/desktop/font/harfbuzz/actions.py +++ b/desktop/font/harfbuzz/actions.py @@ -11,19 +11,20 @@ from pisi.actionsapi import mesontools def setup(): - options = "-D graphite=enabled \ - -D docs=disabled \ + options = "-D docs=disabled \ " if get.buildTYPE() == "emul32": - options += " -D graphite=disabled \ + options += " -D graphite2=disabled \ --libdir=/usr/lib32 \ --bindir=/usr/bin32 \ -D introspection=disabled \ " else: - options += "-Dintrospection=enabled -Ddocs=enabled" + options += "-Dintrospection=enabled \ + -D graphite2=enabled \ + -Ddocs=enabled" mesontools.configure(options)