Issue #1320 - Stop appending cpu arch to the end of %BUILD_TARGET% on Windows in UpdateUtils.jsm

This commit is contained in:
Matt A. Tobin 2020-02-17 12:19:22 -05:00 committed by Roy Tam
commit 44da82db2a

View file

@ -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;