diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-03-22 13:25:51 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-03-23 13:37:42 +0100 |
commit | 59b0dd6e94c876dd322503f326fedf5fa350d25e (patch) | |
tree | 901e5e8d7b193ef35e77945b16db3b29fb7a6833 /desktop | |
parent | aef40e738842522c050538cc8a62c2d1f4861861 (diff) |
Forgotten dp_misc::isPlatformSupported support for PLATFORMID=macosx_aarch64
Change-Id: Ie3dfa624e3e4b8bad0c845175c2bff30feadbc23
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112890
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/deployment/misc/dp_platform.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/desktop/source/deployment/misc/dp_platform.cxx b/desktop/source/deployment/misc/dp_platform.cxx index d551263d9b9d..078d6760ad17 100644 --- a/desktop/source/deployment/misc/dp_platform.cxx +++ b/desktop/source/deployment/misc/dp_platform.cxx @@ -85,6 +85,8 @@ namespace ret = checkOSandCPU(u"Solaris", u"x86"); else if (token == u"aix_powerpc") ret = checkOSandCPU(u"AIX", u"PowerPC"); + else if (token == u"macosx_aarch64") + ret = checkOSandCPU(u"MacOSX", u"AARCH64"); else if (token == u"macosx_x86_64") ret = checkOSandCPU(u"MacOSX", u"X86_64"); else if (token == u"linux_x86") |