From ae03ae6c5861a17ebedefededaf216be551640c7 Mon Sep 17 00:00:00 2001 From: Jordan Williams Date: Thu, 11 Apr 2024 13:38:58 -0500 Subject: [PATCH] Add missing comma --- recipes/pango/all/conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/pango/all/conanfile.py b/recipes/pango/all/conanfile.py index 00d667254f3422..a8986014819db5 100644 --- a/recipes/pango/all/conanfile.py +++ b/recipes/pango/all/conanfile.py @@ -205,7 +205,7 @@ def package_info(self): if self.options.with_fontconfig: self.cpp_info.components["pangofc"].set_property("pkg_config_name", "pangofc") if self.options.with_freetype: - self.cpp_info.components["pangofc"].requires = ["freetype::freetype", "harfbuzz::harfbuzz" "pangoft2"] + self.cpp_info.components["pangofc"].requires = ["freetype::freetype", "harfbuzz::harfbuzz", "pangoft2"] if self.settings.os != "Windows": self.cpp_info.components["pangoroot"].set_property("pkg_config_name", "pangoroot")