From e976df0192c36a061720ef0d9eb0554e2e01e1ff Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Thu, 20 Feb 2025 21:02:46 -0600 Subject: [PATCH] Update: Add programs to bootstrap script. Add several programs to the bootstrap program for the stand alone build. Fix a comment. --- build/scripts/bootstrap-example.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/scripts/bootstrap-example.sh b/build/scripts/bootstrap-example.sh index 6f32dbc..a94e556 100644 --- a/build/scripts/bootstrap-example.sh +++ b/build/scripts/bootstrap-example.sh @@ -38,7 +38,7 @@ # This is not intended to provide any extensive or thorough error handling. # # This script can also be run under zsh rather than bash by setting the environment variable SHELL_ENGINE to "zsh", such as: -# SHELL_ENGINE="zsh" zsh ./bootstrap-example.sh --help +# SHELL_ENGINE="zsh" zsh ./bootstrap-example.sh # if [[ ${SHELL_ENGINE} == "zsh" ]] ; then @@ -206,7 +206,7 @@ if [[ ${1} == "monolithic" ]] ; then fi # The following in an example on building individual projects. -for mode_part in fake utf8 ; do +for mode_part in byte_dump example fake firewall utf8 ; do if [[ ${1} == "${mode_part}-individual" || ${1} == "${mode_part}-level" || ${1} == "${mode_part}-monolithic" || ${1} == "${mode_part}-stand_alone" ]] ; then break; fi -- 1.8.3.1