From df9de582e441919ebc7e6ceb7f868a014fb075db Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Wed, 18 Aug 2021 21:42:16 +1000 Subject: [PATCH] AP_DAL: move from HAL_NO_GCS to HAL_GCS_ENABLED --- libraries/AP_DAL/examples/AP_DAL_Standalone/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_DAL/examples/AP_DAL_Standalone/wscript b/libraries/AP_DAL/examples/AP_DAL_Standalone/wscript index ffcc1ed6f4..ecc3134be3 100644 --- a/libraries/AP_DAL/examples/AP_DAL_Standalone/wscript +++ b/libraries/AP_DAL/examples/AP_DAL_Standalone/wscript @@ -19,7 +19,7 @@ def build(bld): ) # only valid to build with no GCS and no scripting - if '-DHAL_NO_GCS=1' in bld.env.CXXFLAGS and 'ENABLE_SCRIPTING=1' not in bld.env.DEFINES: + if '-DHAL_GCS_ENABLED=0' in bld.env.CXXFLAGS and 'ENABLE_SCRIPTING=1' not in bld.env.DEFINES: bld.ap_program( program_groups=['tool'], use='AP_DAL_libs',