Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A lot of our code uses the portage architecture, which no longer makes sense. Now, the more correct code for this is part of rpm-ostree but I'm not sure we want to go to forking off that yet. Since the build system only supports this set of architectures currently, let's just inline the Go -> RPM translation here.
- Loading branch information
86966cc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
code specific to ppc64le is not valid and make cosa failed.
it should be:
case "ppc64le":
return "ppc64le"
or eventually
case "ppc64", "ppc64le":
return "ppc64le"
86966cc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we noticed this in our multi-arch testing too. Planning to put the fix in after a test