From 07cfd14828c0a7ed6d5d26de6066c6193a710d91 Mon Sep 17 00:00:00 2001 From: Ryan Friedman Date: Wed, 15 Nov 2023 22:25:26 -0700 Subject: [PATCH] Tools: remove enable-networking * This flag was already removed, but the flags were left around Signed-off-by: Ryan Friedman --- Tools/autotest/sim_vehicle.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Tools/autotest/sim_vehicle.py b/Tools/autotest/sim_vehicle.py index 9540454e52..0768bd91bd 100755 --- a/Tools/autotest/sim_vehicle.py +++ b/Tools/autotest/sim_vehicle.py @@ -410,16 +410,12 @@ def do_build(opts, frame_options): if opts.enable_dds: cmd_configure.append("--enable-dds") - if configure_target == 'sitl' and "--enable-networking" not in cmd_configure: - cmd_configure.append("--enable-networking") if opts.disable_networking or configure_target != "sitl": cmd_configure.append("--disable-networking") if opts.enable_networking_tests: cmd_configure.append("--enable-networking-tests") - if "--enable-networking" not in cmd_configure: - cmd_configure.append("--enable-networking") pieces = [shlex.split(x) for x in opts.waf_configure_args] for piece in pieces: