summaryrefslogtreecommitdiff
path: root/nss/coreconf/detect_host_arch.py
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2017-06-08 10:53:01 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2017-06-08 10:53:01 +0000
commitf95d45c36e7c7131747259956821d844e8952e5d (patch)
treeeee14f8b212c48f8597c2a4927a167fcc3a15ea5 /nss/coreconf/detect_host_arch.py
parentdc1565216a5d20ae0d75872151523252309a1292 (diff)
downloadnss-master.tar.gz
Diffstat (limited to 'nss/coreconf/detect_host_arch.py')
-rw-r--r--nss/coreconf/detect_host_arch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nss/coreconf/detect_host_arch.py b/nss/coreconf/detect_host_arch.py
index f161d3c..8b505a6 100644
--- a/nss/coreconf/detect_host_arch.py
+++ b/nss/coreconf/detect_host_arch.py
@@ -14,7 +14,7 @@ def main():
if host_arch in ('amd64', 'x86_64'):
host_arch = 'x64'
elif fnmatch.fnmatch(host_arch, 'i?86') or host_arch == 'i86pc':
- host_arch = 'x64'
+ host_arch = 'ia32'
elif host_arch.startswith('arm'):
host_arch = 'arm'
elif host_arch.startswith('mips'):