From 8bacb52ca3cd52d3bf65b48fc2bf49a0180cb3dc Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Mon, 20 Feb 2023 10:12:47 -0600 Subject: [PATCH] Issue #2117 - Part 1 - Update Mac DMG platform names to intel64 for Intel and arm64 for Apple Silicon. --- toolkit/mozapps/installer/package-name.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toolkit/mozapps/installer/package-name.mk b/toolkit/mozapps/installer/package-name.mk index 548a93b47f..2c9b784883 100644 --- a/toolkit/mozapps/installer/package-name.mk +++ b/toolkit/mozapps/installer/package-name.mk @@ -43,9 +43,9 @@ ifdef UNIVERSAL_BINARY MOZ_PKG_PLATFORM := mac else ifeq ($(TARGET_CPU),x86_64) -MOZ_PKG_PLATFORM := mac64 +MOZ_PKG_PLATFORM := intel64 else -MOZ_PKG_PLATFORM := mac +MOZ_PKG_PLATFORM := arm64 endif endif endif