summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2019-11-20 00:57:17 -0500
committerMark H Weaver <mhw@netris.org>2019-11-20 00:57:34 -0500
commit8468e4a3d4bf9c34e628b30b031742ddfc1be3e3 (patch)
tree8fdb482d1bd9ab9f53c957a4552c907effbcd7b1 /data
parent46d3e865b94ac18be85957b5ea2fa3ef373882de (diff)
Revert "Fix is_manifest predicate to exclude cose.manifest files."
This reverts commit 46d3e865b94ac18be85957b5ea2fa3ef373882de.
Diffstat (limited to 'data')
-rw-r--r--data/patches/fix-is_manifest.patch9
1 files changed, 0 insertions, 9 deletions
diff --git a/data/patches/fix-is_manifest.patch b/data/patches/fix-is_manifest.patch
deleted file mode 100644
index aaa0d69..0000000
--- a/data/patches/fix-is_manifest.patch
+++ /dev/null
@@ -1,9 +0,0 @@
---- a/python/mozbuild/mozpack/chrome/manifest.py.orig 1980-01-01 18:59:51.000000000 -0500
-+++ b/python/mozbuild/mozpack/chrome/manifest.py 2019-11-16 22:14:47.497320339 -0500
-@@ -368,4 +368,5 @@
- Return whether the given path is that of a manifest file.
- '''
- return path.endswith('.manifest') and not path.endswith('.CRT.manifest') \
-- and not path.endswith('.exe.manifest')
-+ and not path.endswith('.exe.manifest') and not path.endswith('cose.manifest')
-+