summaryrefslogtreecommitdiff
path: root/data/patches/hack-manifest-packaging.patch
diff options
context:
space:
mode:
authorRuben Rodriguez <ruben@gnu.org>2015-07-09 14:03:09 -0500
committerRuben Rodriguez <ruben@gnu.org>2015-10-12 23:19:26 -0500
commit6a6d63d8f2e6e04644fcf93d9937508af6eefff2 (patch)
tree85592e68d874a1a20115eedcdd92bd18ae66aa74 /data/patches/hack-manifest-packaging.patch
parent4d18722d200805d5e56e8cd1dcfac61451f4f4f0 (diff)
Initial adaptation to v38.x
Diffstat (limited to 'data/patches/hack-manifest-packaging.patch')
-rw-r--r--data/patches/hack-manifest-packaging.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/data/patches/hack-manifest-packaging.patch b/data/patches/hack-manifest-packaging.patch
deleted file mode 100644
index 5cede80..0000000
--- a/data/patches/hack-manifest-packaging.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-# Hack allowing to bundle whole unpacked extensions without their manifests
-# breaking the packaging process.
-
---- a/python/mozbuild/mozpack/packager/__init__.py 2014-10-04 19:03:00.000000000 +0000
-+++ b/python/mozbuild/mozpack/packager/__init__.py 2014-10-06 12:07:03.000000000 +0000
-@@ -246,7 +246,10 @@
- '''
- assert not self._closed
- if is_manifest(path):
-- self._add_manifest_file(path, file)
-+ if "chrome.manifest" in path and "extensions" in path:
-+ self._file_queue.append(self.formatter.add, path, file)
-+ else:
-+ self._add_manifest_file(path, file)
- elif path.endswith('.xpt'):
- self._queue.append(self.formatter.add_interfaces, path, file)
- else: