Tweak the size-checking threshold to make things faster

This commit is contained in:
Steve McIntyre 2006-12-11 15:50:49 +00:00
parent 277fc58f3d
commit 8b318a9693
1 changed files with 2 additions and 2 deletions

View File

@ -86,9 +86,9 @@ my $size_swap_check;
# start running mkisofs?
# Cope with HFS-hybrid disks using extra space for the HFS metadata
if ($archlist =~ /m68k/ || $archlist =~ /powerpc/) {
$size_swap_check = int($maxdiskblocks * 90 / 100);
} else {
$size_swap_check = int($maxdiskblocks * 95 / 100);
} else {
$size_swap_check = int($maxdiskblocks * 98 / 100);
}
my $pkgs_this_cd = 0;