diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-17 12:19:22 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-02-17 12:19:22 -0500 |
commit | 66b9ddfd320fce179cd998de330cec3a097091de (patch) | |
tree | a54c8aa2859b8b59acfa7b127b2af3ac007cd00d /toolkit | |
parent | ac68f8cf6c0a03a4a190ab2b560b01eeb14fa561 (diff) | |
download | uxp-66b9ddfd320fce179cd998de330cec3a097091de.tar.gz |
Issue #1320 - Stop appending cpu arch to the end of %BUILD_TARGET% on Windows in UpdateUtils.jsm
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/modules/UpdateUtils.jsm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/toolkit/modules/UpdateUtils.jsm b/toolkit/modules/UpdateUtils.jsm index aaec77042e..704fe116d1 100644 --- a/toolkit/modules/UpdateUtils.jsm +++ b/toolkit/modules/UpdateUtils.jsm @@ -256,9 +256,6 @@ XPCOMUtils.defineLazyGetter(UpdateUtils, "ABI", function() { if (macutils.isUniversalBinary) { abi += "-u-" + macutils.architecturesInBinary; } -#elifdef XP_WIN - // Windows build should report the CPU architecture that it's running on. - abi += "-" + gWinCPUArch; #endif return abi; |