From 695a42c9295790a31b8b30e4eee8b85b690f2539 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 31 May 2026 10:08:22 -0500 Subject: [PATCH] Update: Invert debug mode parameter in boot strap example script. I generally want debugging when using the example boot strap script. Make the default behavior to have debug mode enabled. The debug parameter to the boot strap example script now disables the debug mode. --- build/scripts/bootstrap-example.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build/scripts/bootstrap-example.sh b/build/scripts/bootstrap-example.sh index c8a7859bc..f1340a93d 100644 --- a/build/scripts/bootstrap-example.sh +++ b/build/scripts/bootstrap-example.sh @@ -35,7 +35,7 @@ # # The -A represents building with android mode. # -# The -D represents building with debug mode. +# The -D represents building without debug mode. # # The -P represents building with pinephone mode. # @@ -69,8 +69,8 @@ main() { local mode_compiler_value="gcc" local mode_custom_param= local mode_custom_value= - local mode_debug_param= - local mode_debug_value= + local mode_debug_param="-m" + local mode_debug_value="debug" local mode_part= local mode_parameter= local mode_path= @@ -132,8 +132,8 @@ main() { mode_custom_param="-m" mode_custom_value="android" elif [[ ${p} == "-D" ]] ; then - mode_debug_param="-m" - mode_debug_value="debug" + mode_debug_param= + mode_debug_value= elif [[ ${p} == "-P" ]] ; then mode_custom_param="-m" mode_custom_value="pinephone" -- 2.52.0