summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2003-04-25 08:11:53 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2003-04-25 08:11:53 +0000
commitc5709809803a82559e7fc358c1cbdba3f84227d5 (patch)
tree56711531e2a83873c32f207b9c1c25e0ea5cc513
parent09ad27251238b65b1f4822fc9b0c6ff6db262ba0 (diff)
downloadATCD-c5709809803a82559e7fc358c1cbdba3f84227d5.tar.gz
ChangeLogTag: Fri Apr 25 08:11:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
-rwxr-xr-xbin/msvc_auto_compile.pl9
1 files changed, 2 insertions, 7 deletions
diff --git a/bin/msvc_auto_compile.pl b/bin/msvc_auto_compile.pl
index a161d3910c7..a01fb053e90 100755
--- a/bin/msvc_auto_compile.pl
+++ b/bin/msvc_auto_compile.pl
@@ -227,16 +227,11 @@ sub Build_All ()
$count = 0;
foreach $c (@configurations) {
print STDERR "Configuration ".$count++." of ".$#configurations."\n" if ($print_status == 1);
+ Build_Config ($c)
if (($Build_DLL && $Build_Debug && $c =~ /Win32 Debug/)
|| ($Build_DLL && $Build_Release && $c =~ /Win32 Release/)
|| ($Build_LIB && $Build_Debug && $c =~ /Win32 Static Debug/)
- || ($Build_LIB && $Build_Release && $c =~ /Win32 Static Release/))
- {
- my $Status = 0;
- $Status = Build_Config ($c)
- if (!(($c =~ /Library/) || ($c =~ /DLL/) || ($c =~ /LIB/)));
- return if ($Status != 0 && !$Ignore_errors);
- }
+ || ($Build_LIB && $Build_Release && $c =~ /Win32 Static Release/));
}
}