summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgrizzlyuser <grizzlyuser@protonmail.com>2020-04-08 11:17:30 +0300
committerbill-auger <mr.j.spam.me@gmail.com>2020-06-25 05:09:52 -0400
commitff65a296c44c75cbab3355606fd624f30d2f3cd7 (patch)
treee15d78ecca33e780bd1c1f1b926023d18d8463ef /src
parentcf3cb298937655901c01f43c3a2dd157e9eeb5c4 (diff)
iceweasel_75.0-1.branding: Bump version, update patch75.0-1
Signed-off-by: Andreas Grapentin <andreas@grapentin.org>
Diffstat (limited to 'src')
-rw-r--r--src/patches/iceweasel-branding/enable-object-directory-paths.patch8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/patches/iceweasel-branding/enable-object-directory-paths.patch b/src/patches/iceweasel-branding/enable-object-directory-paths.patch
index 74791e4..8c01e86 100644
--- a/src/patches/iceweasel-branding/enable-object-directory-paths.patch
+++ b/src/patches/iceweasel-branding/enable-object-directory-paths.patch
@@ -1,13 +1,13 @@
diff --git a/python/mozbuild/mozbuild/frontend/context.py b/python/mozbuild/mozbuild/frontend/context.py
-index 41ae8ae..dcc3263 100644
+index 07db8aa..8403e68 100644
--- a/python/mozbuild/mozbuild/frontend/context.py
+++ b/python/mozbuild/mozbuild/frontend/context.py
-@@ -640,8 +640,6 @@ class Path(ContextDerivedValue, unicode)
+@@ -742,8 +742,6 @@ class SourcePath(Path):
"""Like Path, but limited to paths in the source directory."""
- def __init__(self, context, value):
+ def __new__(cls, context, value=None):
- if value.startswith('!'):
- raise ValueError('Object directory paths are not allowed')
if value.startswith('%'):
raise ValueError('Filesystem absolute paths are not allowed')
- super(SourcePath, self).__init__(context, value)
+ self = super(SourcePath, cls).__new__(cls, context, value)