Skip to content

Commit

Permalink
(#5920) fixes #5816: boost shared build failed with MingW due to .dll…
Browse files Browse the repository at this point in the history
….a files
  • Loading branch information
Chnossos authored Jul 21, 2021
1 parent 4aaee5b commit abae3ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/boost/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -1433,7 +1433,7 @@ def add_libprefix(n):
libprefix = "lib"
return libprefix + n

all_detected_libraries = set(tools.collect_libs(self))
all_detected_libraries = set(l[:-4] if l.endswith(".dll") else l for l in tools.collect_libs(self))
all_expected_libraries = set()
incomplete_components = list()

Expand Down

0 comments on commit abae3ca

Please sign in to comment.