summaryrefslogtreecommitdiffstats
path: root/source/l/mozjs115/patches/init_patch.patch
diff options
context:
space:
mode:
Diffstat (limited to 'source/l/mozjs115/patches/init_patch.patch')
-rw-r--r--source/l/mozjs115/patches/init_patch.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/source/l/mozjs115/patches/init_patch.patch b/source/l/mozjs115/patches/init_patch.patch
new file mode 100644
index 000000000..28ed1d31a
--- /dev/null
+++ b/source/l/mozjs115/patches/init_patch.patch
@@ -0,0 +1,28 @@
+From 00414eb67ab0591911167155963b5524fbf2b0c0 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Franti=C5=A1ek=20Zatloukal?= <fzatlouk@redhat.com>
+Date: Mon, 9 Aug 2021 14:38:58 +0200
+Subject: [PATCH] Don't throw InvalidOptionError on invalid options
+
+---
+ python/mozbuild/mozbuild/configure/__init__.py | 5 +----
+ 1 file changed, 1 insertion(+), 4 deletions(-)
+
+diff --git a/python/mozbuild/mozbuild/configure/__init__.py b/python/mozbuild/mozbuild/configure/__init__.py
+index f3167f6..c9e1132 100644
+--- a/python/mozbuild/mozbuild/configure/__init__.py
++++ b/python/mozbuild/mozbuild/configure/__init__.py
+@@ -557,10 +557,7 @@ class ConfigureSandbox(dict):
+ for arg in self._helper:
+ without_value = arg.split("=", 1)[0]
+ msg = "Unknown option: %s" % without_value
+- if self._help:
+- self._logger.warning(msg)
+- else:
+- raise InvalidOptionError(msg)
++ self._logger.warning(msg)
+
+ # Run the execution queue
+ for func, args in self._execution_queue:
+--
+2.31.1
+