X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=tools%2Ftest-build;h=6472895698bb3bd5d396ad726276242987210a04;hb=c6e40d36b42a7ebf832c3a57d2816a47ee9c9a76;hp=c74dbb4e0d066d7e6a783cb47f982654481ea9bd;hpb=124c17e14134a4999afc1a5e981ab7c75b3694b9;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/tools/test-build b/tools/test-build index c74dbb4e0..647289569 100755 --- a/tools/test-build +++ b/tools/test-build @@ -58,19 +58,9 @@ foreach my $compiler (@compilers) { say "Failed to configure using the $compiler compiler and the $socketengine socket engine!"; exit 1; } - if (!defined $ENV{TEST_BUILD_DYNAMIC}) { - $ENV{INSPIRCD_STATIC} = 1; - if (system 'make', '--jobs', get_cpu_count, 'install') { - say "Failed to compile with static modules using the $compiler compiler and the $socketengine socket engine!"; - exit 1; - } - } - if (!defined $ENV{TEST_BUILD_STATIC}) { - delete $ENV{INSPIRCD_STATIC}; - if (system 'make', '--jobs', get_cpu_count, 'install') { - say "Failed to compile with dynamic modules using the $compiler compiler and the $socketengine socket engine!"; - exit 1; - } + if (system 'make', '--jobs', get_cpu_count, 'install') { + say "Failed to compile using the $compiler compiler and the $socketengine socket engine!"; + exit 1; } say "Building using the $compiler compiler and the $socketengine socket engine succeeded!"; }