summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2017-05-26 20:15:30 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2017-05-30 08:13:27 +0200
commit235c68df9c7ae4678acabdec2e553bd8d687deb5 (patch)
treeb682a3668da9eb9c1bdbc885e04aec9b281f5594 /scripts
parenta1569b918b5524b9b189eca845a77f59bdb6946c (diff)
downloadptxdist-235c68df9c7ae4678acabdec2e553bd8d687deb5.tar.gz
ptxdist-235c68df9c7ae4678acabdec2e553bd8d687deb5.tar.xz
configure_helper: improve parsing python3 configure file
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/configure_helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/configure_helper.py b/scripts/configure_helper.py
index 7923aeae8..ff7db9250 100755
--- a/scripts/configure_helper.py
+++ b/scripts/configure_helper.py
@@ -127,7 +127,7 @@ def blacklist_hit(name, blacklist):
return True
return False
-parse_args_re = re.compile("--((enable|disable|with|without)-)?\[?([^\[=]*)(([\[=]*)([^]]*)]?)?")
+parse_args_re = re.compile("--((enable|disable|with|without|with\(out\))-)?\[?([^\[=]*)(([\[=]*)([^]]*)]?)?")
def parse_configure_args(args, blacklist):
ret = []
for arg in args: