Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leoparente committed Jan 10, 2025
1 parent dfa2cde commit 83526f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ def requirements(self):
self.requires("yaml-cpp/0.8.0")
self.requires("robin-hood-hashing/3.11.5")
self.requires("libcurl/8.11.1")
libc = self.settings.compiler.get("libc", "")
if libc != "musl":
libc = getattr(self.settings.compiler, "libc", None)
if libc and libc != "musl":
self.requires("sentry-crashpad/0.6.5")

def build_requirements(self):
Expand Down

0 comments on commit 83526f0

Please sign in to comment.