Skip to content

Commit

Permalink
Use util-linux-libuuid
Browse files Browse the repository at this point in the history
conan-io#20695
conan-io#19084

Contributes to CURA-10831
  • Loading branch information
jellespijker committed Nov 29, 2023
1 parent c157155 commit e5218c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes/cpython/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def requirements(self):
if self.settings.os != "Windows":
self.requires("libxcrypt/4.4.28")
if self.settings.os == "Linux":
self.requires("libuuid/1.0.3")
self.requires("util-linux-libuuid/2.39.2")
if self.options.get_safe("with_bz2", False):
self.requires("bzip2/1.0.8")
if self.options.get_safe("with_gdbm", False):
Expand Down Expand Up @@ -789,7 +789,7 @@ def package_info(self):
if self.settings.os != "Windows":
self.cpp_info.components["_hidden"].requires.append("libxcrypt::libxcrypt")
if self.settings.os == "Linux":
self.cpp_info.components["_hidden"].requires.append("libuuid::libuuid")
self.cpp_info.components["_hidden"].requires.append("util-linux-libuuid::util-linux-libuuid")
if self.options.get_safe("with_bz2", False):
self.cpp_info.components["_hidden"].requires.append("bzip2::bzip2")
if self.options.get_safe("with_gdbm", False):
Expand Down

0 comments on commit e5218c4

Please sign in to comment.