Skip to content
Snippets Groups Projects
Commit 5837551f authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Merge branch 'remove-libgfortran4' into 'master'

Remove libgfortran4 from list of packages to be installed (current linux install issues)

See merge request !236
parents 7696f6fe 6c8af044
No related branches found
No related tags found
1 merge request!236Remove libgfortran4 from list of packages to be installed (current linux install issues)
Pipeline #52880 passed
...@@ -297,6 +297,8 @@ def parse_dependencies(recipe_dir, config): ...@@ -297,6 +297,8 @@ def parse_dependencies(recipe_dir, config):
# causes conflicts on macOS # causes conflicts on macOS
if "llvm-tools" in build_requirements: if "llvm-tools" in build_requirements:
build_requirements.remove("llvm-tools") build_requirements.remove("llvm-tools")
if "libgfortran4" in build_requirements:
build_requirements.remove("libgfortran4")
return ( return (
build_requirements build_requirements
+ remove_pins(recipe["requirements"].get("host", [])) + remove_pins(recipe["requirements"].get("host", []))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment