Bug 552924 - Allow distinguishing Universal ppc/i386 from Universal i386/x86_64 builds in AUS request. r=dtownsend, a=blocking bug 519060

This commit is contained in:
Robert Strong 2010-08-26 10:45:50 -07:00
parent 008f27b425
commit 1b4bd240b0
2 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ XPCOMUtils.defineLazyGetter(this, "gABI", function aus_gABI() {
getService(Ci.nsIMacUtils);
if (macutils.isUniversalBinary)
abi = "Universal-gcc3";
abi += "-u-" + macutils.architecturesInBinary;
#endif
return abi;
});

View File

@ -140,7 +140,7 @@ function check_test_pt4() {
getService(AUS_Ci.nsIMacUtils);
if (macutils.isUniversalBinary)
abi = "Universal-gcc3";
abi += "-u-" + macutils.architecturesInBinary;
}
do_check_eq(getResult(gRequestURL), gAppInfo.OS + "_" + abi);