Index: adblockplus/build.py |
=================================================================== |
--- a/adblockplus/build.py |
+++ b/adblockplus/build.py |
@@ -49,16 +49,19 @@ |
abp_dir = os.path.join(patched_dir, _ABP_DIR) |
abp_core_dir = os.path.join(abp_dir, _ABP_CORE_DIR) |
subprocess.check_call(["hg", "import", "-q", "-R", abp_core_dir, |
os.path.join(patched_dir, "issue-6070.patch")]) |
subprocess.check_call(["hg", "import", "-q", "-R", abp_core_dir, |
os.path.join(patched_dir, "issue-6108.patch")]) |
+ subprocess.check_call(["hg", "import", "-q", "-R", abp_dir, |
+ os.path.join(patched_dir, "issue-7415.patch")]) |
+ |
if __name__ == "__main__": |
if len(sys.argv) < 2: |
error_message = "Usage: %s XPI_PATH" % os.path.basename(sys.argv[0]) |
print >>sys.stderr, error_message |
sys.exit(1) |
xpi_path = sys.argv[1] |
patched_dir = tempfile.NamedTemporaryFile().name |