Skip to content

Commit

Permalink
(#11813) xorg: fix pkg_config generation
Browse files Browse the repository at this point in the history
fixes #11733
  • Loading branch information
ericLemanissier committed Jul 22, 2022
1 parent ed976e4 commit f824ba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/xorg/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def _fill_cppinfo_from_pkgconfig(self, name):
self.cpp_info.components[name].set_property("component_version", pkg_config.version[0])
self.cpp_info.components[name].set_property(
"pkg_config_custom_content",
"\n".join("%s=%s" % (key, value) for key,value in variables.items()))
"\n".join("%s=%s" % (key, value) for key,value in variables.items() if key not in ["pcfiledir","prefix"]))

def system_requirements(self):
packages = []
Expand Down

0 comments on commit f824ba2

Please sign in to comment.