summaryrefslogtreecommitdiff
path: root/nss/coreconf/detect_host_arch.py
diff options
context:
space:
mode:
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'):