From b527dce08d7c275efb9b52e8f171518b06900a1b Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 2 Jul 2018 09:35:41 +1000 Subject: [PATCH] autotest: use --enable-sfml for graphics --- Tools/autotest/sim_vehicle.py | 2 +- wscript | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Tools/autotest/sim_vehicle.py b/Tools/autotest/sim_vehicle.py index 8cb9d12776..f2e4a5cd93 100755 --- a/Tools/autotest/sim_vehicle.py +++ b/Tools/autotest/sim_vehicle.py @@ -319,7 +319,7 @@ def do_build_waf(opts, frame_options): cmd_configure.append("--debug") if opts.OSD: - cmd_configure.append("--enable-osd") + cmd_configure.append("--enable-sfml") pieces = [shlex.split(x) for x in opts.waf_configure_args] for piece in pieces: diff --git a/wscript b/wscript index 878be746cb..1749cd72cc 100644 --- a/wscript +++ b/wscript @@ -138,9 +138,9 @@ configuration in order to save typing. default=False, help="Disable compilation and test execution") - g.add_option('--enable-osd', action='store_true', + g.add_option('--enable-sfml', action='store_true', default=False, - help="Enable OSD display") + help="Enable SFML graphics library") g.add_option('--static', action='store_true',