diff options
author | Anne Nicolas <ennael@mageia.org> | 2012-05-06 09:34:09 +0000 |
---|---|---|
committer | Anne Nicolas <ennael@mageia.org> | 2012-05-06 09:34:09 +0000 |
commit | 8013bdca64367160791a365999db882d82d6abef (patch) | |
tree | 41c5017d3ac82327e067e51a255179682d577c2b /BCD | |
parent | 71b33a7428ffc8496a8f84f70a6f1c29adc0b4de (diff) | |
download | bcd-8013bdca64367160791a365999db882d82d6abef.tar bcd-8013bdca64367160791a365999db882d82d6abef.tar.gz bcd-8013bdca64367160791a365999db882d82d6abef.tar.bz2 bcd-8013bdca64367160791a365999db882d82d6abef.tar.xz bcd-8013bdca64367160791a365999db882d82d6abef.zip |
fix isohybrid option
Diffstat (limited to 'BCD')
-rw-r--r-- | BCD/Genisoimage.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BCD/Genisoimage.pm b/BCD/Genisoimage.pm index bf2f797..9615c49 100644 --- a/BCD/Genisoimage.pm +++ b/BCD/Genisoimage.pm @@ -122,7 +122,7 @@ sub create_md5 { sub isohybrid { print_color("$LOG isohybrid the ISO", $color); my $ISOFILE = "$isodir/$isoname.iso"; - system("isohybrid $isoconf->{options}{isohybrid} $ISOFILE") == 0 or die "$LOG system isohybrid failed: $?\n"; + system("isohybrid $isoconf->{iso}{isohybrid}{options} $ISOFILE") == 0 or die "$LOG system isohybrid failed: $?\n"; } sub copy_textfiles { |