Corrected bug with uninitialized value
This commit is contained in:
parent
356105bd34
commit
ac20581199
1 changed files with 3 additions and 2 deletions
|
@ -91,7 +91,9 @@ sub BuildAll {
|
|||
RemoveFromDependencies($DeadPrj, \%ParentDepsHash);
|
||||
};
|
||||
while ($Prj = PickPrjToBuild(\%ParentDepsHash)) {
|
||||
print "\nBuild project $Prj\n";
|
||||
print "\n-------------\n";
|
||||
print "Building project $Prj\n";
|
||||
print "-------------\n";
|
||||
$PrjDir = CorrectPath($StandDir.$Prj);
|
||||
BuildPrj($PrjDir);
|
||||
system ("deliver");
|
||||
|
@ -138,7 +140,6 @@ sub GetParentsString {
|
|||
while (<PrjBuildFile>) {
|
||||
s/\r\n//;
|
||||
if ($_ =~ /([\:]+)([\t | \s]+)/) {
|
||||
$ParentPrjs = $';
|
||||
close PrjBuildFile;
|
||||
return $';
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue