Bug 1326496 - mozbuild: Fix bitness from 32 to 64 bits on alpha. r=glandium draft
authorJohn Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
Thu, 29 Dec 2016 00:01:43 +0100
changeset 459453 1f4d99d8dff27bcc25eff21dc6a16dae63f48595
parent 459452 ce9e9f0dc752896ac7ba00bb0610b3f731e948b0
child 459454 035815ecbbc0e0fceafecc3c5898ac4a676ed77a
push id41227
push userbmo:mh+mozilla@glandium.org
push dateThu, 12 Jan 2017 00:47:30 +0000
reviewersglandium
bugs1326496
milestone53.0a1
Bug 1326496 - mozbuild: Fix bitness from 32 to 64 bits on alpha. r=glandium
python/mozbuild/mozbuild/configure/constants.py
--- a/python/mozbuild/mozbuild/configure/constants.py
+++ b/python/mozbuild/mozbuild/configure/constants.py
@@ -35,17 +35,17 @@ Kernel = EnumString.subclass(
     'Linux',
     'NetBSD',
     'OpenBSD',
     'WINNT',
 )
 
 CPU_bitness = {
     'aarch64': 64,
-    'Alpha': 32,
+    'Alpha': 64,
     'arm': 32,
     'hppa': 32,
     'ia64': 64,
     'mips32': 32,
     'mips64': 64,
     'ppc': 32,
     'ppc64': 64,
     's390': 32,