summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2017-05-10 08:51:49 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2017-05-10 09:43:39 +0200
commit1bc7eb2d962473fd107ecc4d95ed1b1c0c6068f4 (patch)
treeb9fc5c0ad903f0eb4f77f87fb570979aa4a71f4f /scripts
parente0da4f5101b30e377e0d978a1d2dc401378503bb (diff)
downloadptxdist-1bc7eb2d962473fd107ecc4d95ed1b1c0c6068f4.tar.gz
ptxdist-1bc7eb2d962473fd107ecc4d95ed1b1c0c6068f4.tar.xz
configure_helper: add workaround for qemu configure script
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/configure_helper.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/configure_helper.py b/scripts/configure_helper.py
index 0d1206f65..375c50125 100755
--- a/scripts/configure_helper.py
+++ b/scripts/configure_helper.py
@@ -191,6 +191,8 @@ def handle_dir(d):
continue
if word[:2] == "--":
configure_args.append(word)
+ elif ptx_pkg == "host-qemu" and re.match(" [a-z].*", line):
+ configure_args.append("--enable-" + word)
parsed = parse_configure_args(configure_args, configure_blacklist)
args = build_args(parsed)