From a992612a37431c6b91b06f1467b01561ab136c6a Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 26 May 2021 18:48:30 -0500 Subject: [PATCH] Bugfix: remove overlooked $build_static == "yes". A previous commit should have removed this and failed to do so. With this present, static installations do not correctly install. --- build/scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/install.sh b/build/scripts/install.sh index 785ef36..59ef9ac 100644 --- a/build/scripts/install.sh +++ b/build/scripts/install.sh @@ -684,7 +684,7 @@ install_perform_install() { fi if [[ $failure == "" && $build_sources_program != "" && ( $enable_shared_programs == "yes" || $enable_static_programs == "yes" ) ]] ; then - if [[ $build_static == "yes" && $enable_static_programs == "yes" ]] ; then + if [[ $enable_static_programs == "yes" ]] ; then if [[ $verbosity != "quiet" ]] ; then echo echo -e "${c_highlight}Installing (static) Programs to: $c_reset$c_notice$destination_programs_static$c_reset${c_highlight}.$c_reset" -- 1.8.3.1