Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

libmaxminddb: add version 1.10.0 #24306

Merged
merged 4 commits into from
Jun 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
append PATH on with_binaries=True
  • Loading branch information
toge committed Jun 13, 2024
commit 732f6295470e9a69fdce8e613a214df6463c8c5d
2 changes: 1 addition & 1 deletion recipes/libmaxminddb/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def package_info(self):
if self.settings.os == "Windows":
self.cpp_info.system_libs = ["ws2_32"]

if self.settings.os != "Windows":
if self.settings.os != "Windows" and self.options.get_safe("with_binaries", True):
bin_path = os.path.join(self.package_folder, "bin")
self.env_info.PATH.append(bin_path)

Expand Down
Loading