mirror of
https://git.freebsd.org/ports.git
synced 2025-07-07 20:39:18 -04:00
Tested by: Matthias Wolf, rene MFH: 2021Q2 Security: http://vuxml.freebsd.org/freebsd/cb13a765-a277-11eb-97a0-e09467587c17.html
11 lines
377 B
Python
11 lines
377 B
Python
--- build/detect_host_arch.py.orig 2021-04-14 18:40:48 UTC
|
|
+++ build/detect_host_arch.py
|
|
@@ -21,6 +21,8 @@ def HostArch():
|
|
host_arch = 'ia32'
|
|
elif host_arch in ['x86_64', 'amd64']:
|
|
host_arch = 'x64'
|
|
+ elif host_arch.startswith('arm64'):
|
|
+ host_arch = 'arm64'
|
|
elif host_arch.startswith('arm'):
|
|
host_arch = 'arm'
|
|
elif host_arch.startswith('aarch64'):
|