Skip to content

Commit

Permalink
constants.py: fix powerpc arch detection
Browse files Browse the repository at this point in the history
  • Loading branch information
barracuda156 committed Jul 16, 2024
1 parent 4616af0 commit 23b2a53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/mozbuild/mozbuild/configure/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@
('ia64', '__ia64__'),
('s390x', '__s390x__'),
('s390', '__s390__'),
('ppc64', '__powerpc64__'),
('ppc', '__powerpc__'),
('ppc64', '__powerpc64__ || __ppc64__'),
('ppc', '__powerpc__ || __ppc__'),
('Alpha', '__alpha__'),
('hppa', '__hppa__'),
('sparc64', '__sparc__ && __arch64__'),
Expand Down

0 comments on commit 23b2a53

Please sign in to comment.