add the jigdo opts when trying to estimate sizes - this matters for xorriso if we want to be accurate

This commit is contained in:
Steve McIntyre 2010-12-28 20:07:29 +00:00
parent 8e1cbeed1f
commit f6042461c3
1 changed files with 6 additions and 0 deletions

View File

@ -202,6 +202,12 @@ while (defined (my $pkg = <INLIST>)) {
} else {
$mkisofs_opts = "";
}
if ($disknum <= $maxjigdos) {
$mkisofs_opts = "$mkisofs_opts -jigdo-jigdo /dev/null";
$mkisofs_opts = "$mkisofs_opts -jigdo-template /dev/null";
$mkisofs_opts = "$mkisofs_opts -md5-list /dev/null";
$mkisofs_opts = "$mkisofs_opts -o /dev/null";
}
if ( -e "$bdir/$disknum.mkisofs_dirs" ) {
open(OPTS, "<$bdir/$disknum.mkisofs_dirs");
while (defined($opt = <OPTS>)) {