summaryrefslogtreecommitdiffstats
path: root/source/l/mozjs115/patches/init_patch.patch
blob: 28ed1d31a34915cb57827b92cd33b7e9ce572e25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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