From: Kevin Day Date: Sun, 31 May 2026 15:08:22 +0000 (-0500) Subject: Update: Invert debug mode parameter in boot strap example script. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=695a42c9295790a31b8b30e4eee8b85b690f2539;p=fll 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. --- 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"