Skip to content

Commit

Permalink
Omit arch from external spec reconstruction (#615)
Browse files Browse the repository at this point in the history
  • Loading branch information
psakievich authored Aug 20, 2024
1 parent d9c3ec9 commit 954da95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manager/manager_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def repl(match):


def pruned_spec_string(spec, variants_to_omit=["ipo", "dev_path=", "patches=", "build_system="]):
full_spec = spec.format("{name}{@version}{%compiler}{variants}{arch=architecture}")
full_spec = spec.format("{name}{@version}{%compiler}{variants}")

# add spaces between variants so we can filter
spec_components = full_spec.replace("+", " +").replace("~", " ~").split(" ")
Expand Down

0 comments on commit 954da95

Please sign in to comment.