]> Kevux Git Server - fll/commitdiff
Bugfix: remove overlooked $build_static == "yes".
authorKevin Day <thekevinday@gmail.com>
Wed, 26 May 2021 23:48:30 +0000 (18:48 -0500)
committerKevin Day <thekevinday@gmail.com>
Wed, 26 May 2021 23:48:30 +0000 (18:48 -0500)
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

index 785ef360abbad925eb62b04db4a482c2d30b4a76..59ef9ac683b3d02105989df1bc1dd47c1d20bc8a 100644 (file)
@@ -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"