summaryrefslogtreecommitdiffstats
path: root/toolkit
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-02-17 12:19:22 -0500
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-04-14 12:45:59 +0200
commit9612c64265da34be885acf3f89917711c4cc8280 (patch)
tree9b867ec030d15ad21a527abe00e5900578f58209 /toolkit
parentc5d570792d027073e74255f47fae6a7859fd656d (diff)
downloadUXP-9612c64265da34be885acf3f89917711c4cc8280.tar
UXP-9612c64265da34be885acf3f89917711c4cc8280.tar.gz
UXP-9612c64265da34be885acf3f89917711c4cc8280.tar.lz
UXP-9612c64265da34be885acf3f89917711c4cc8280.tar.xz
UXP-9612c64265da34be885acf3f89917711c4cc8280.zip
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.jsm3
1 files changed, 0 insertions, 3 deletions
diff --git a/toolkit/modules/UpdateUtils.jsm b/toolkit/modules/UpdateUtils.jsm
index aaec77042..704fe116d 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;