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

Fix issue 12028 - Conan cannot install boost on Windows based on Linux profiles #12031

Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion recipes/boost/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def validate(self):
)

if self._stacktrace_addr2line_available:
if os.path.abspath(str(self.options.addr2line_location)) != str(self.options.addr2line_location):
if not os.path.isabs(str(self.options.addr2line_location)):
raise ConanInvalidConfiguration("addr2line_location must be an absolute path to addr2line")

# Check, when a boost module is enabled, whether the boost modules it depends on are enabled as well.
Expand Down