summaryrefslogtreecommitdiff
path: root/libre-testing/iceweasel/enable-object-directory-paths.patch
diff options
context:
space:
mode:
authorIsaac David <isacdaavid@isacdaavid.info>2016-08-10 19:29:28 -0500
committerIsaac David <isacdaavid@isacdaavid.info>2016-08-10 19:29:28 -0500
commitc70d9f25e6ef965999cbe977dee5a98b033143b6 (patch)
tree81060e65e6e14d255713e8b800a2e174e1465818 /libre-testing/iceweasel/enable-object-directory-paths.patch
parent30df3ee262862ab29665f78a487cb81b7ac3c405 (diff)
iceweasel: add experimental armv7h support to [libre-testing]
Diffstat (limited to 'libre-testing/iceweasel/enable-object-directory-paths.patch')
-rw-r--r--libre-testing/iceweasel/enable-object-directory-paths.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/libre-testing/iceweasel/enable-object-directory-paths.patch b/libre-testing/iceweasel/enable-object-directory-paths.patch
new file mode 100644
index 000000000..bc938c66e
--- /dev/null
+++ b/libre-testing/iceweasel/enable-object-directory-paths.patch
@@ -0,0 +1,13 @@
+diff --git a/python/mozbuild/mozbuild/frontend/context.py b/python/mozbuild/mozbuild/frontend/context.py
+index 41ae8ae..dcc3263 100644
+--- a/python/mozbuild/mozbuild/frontend/context.py
++++ b/python/mozbuild/mozbuild/frontend/context.py
+@@ -408,8 +408,6 @@ class Path(ContextDerivedValue, unicode):
+ class SourcePath(Path):
+ """Like Path, but limited to paths in the source directory."""
+ def __init__(self, context, value):
+- 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)