Skip to content

Commit

Permalink
Only apply system libraries workaround on FreeBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
jwillikers committed Jul 21, 2022
1 parent 5c20018 commit 3a251cd
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 @@ -76,7 +76,7 @@ def package_info(self):
"xcb-dri3"] + ([] if self.settings.os == "FreeBSD" else ["uuid"]):
pkg_config = PkgConfig(self, name)
pkg_config.fill_cpp_info(
self.cpp_info.components[name], is_system=False)
self.cpp_info.components[name], is_system=self.settings.os != "FreeBSD")
self.cpp_info.components[name].version = pkg_config.version
self.cpp_info.components[name].set_property(
"pkg_config_name", name)
Expand Down

0 comments on commit 3a251cd

Please sign in to comment.