diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-17 12:19:22 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:45:59 +0200 |
commit | 9612c64265da34be885acf3f89917711c4cc8280 (patch) | |
tree | 9b867ec030d15ad21a527abe00e5900578f58209 /toolkit/modules | |
parent | c5d570792d027073e74255f47fae6a7859fd656d (diff) | |
download | uxp-9612c64265da34be885acf3f89917711c4cc8280.tar.gz |
Issue #1320 - Stop appending cpu arch to the end of %BUILD_TARGET% on Windows in UpdateUtils.jsm
Diffstat (limited to 'toolkit/modules')
-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; |