Index: build.py |
=================================================================== |
--- a/build.py |
+++ b/build.py |
@@ -81,17 +81,17 @@ def _build(architecture, distribution_mo |
dist_path = os.path.join(_ABB_PATH, obj_dir, "dist") |
arch_suffix = _ARCH_X86_I386 if architecture == _ARCH_X86 else _ARCH_ARM |
[manifest_path] = glob.glob(os.path.join( |
dist_path, "fennec-*.multi.android-%s.json" % arch_suffix)) |
with open(manifest_path) as manifest_file: |
manifest = json.load(manifest_file) |
apk_name = "fennec-%s.multi.android-%s-unsigned-unaligned.apk" % ( |
- manifest["moz_app_version"], architecture) |
+ manifest["moz_app_version"], arch_suffix) |
apk_path = os.path.join(dist_path, apk_name) |
if build_mode == _BUILD_RELEASE: |
target_apk_name = "adblockbrowser-%s-%s.apk" % ( |
manifest["moz_app_version"], architecture) |
else: |
target_apk_name = "adblockbrowser-%s.%s-%s.apk" % ( |
manifest["moz_app_version"], manifest["buildid"], architecture) |
target_apk_path = os.path.join(dist_path, target_apk_name) |