Add genisoimage support to actions BuildCDBootImage1.

This commit is contained in:
Matt Madia
2013-11-30 08:27:48 -05:00
parent 3024704a94
commit 0d9151c9ff
+2 -1
View File
@@ -1591,7 +1591,8 @@ rule BuildCDBootImage image : bootfloppy : extrafiles
actions BuildCDBootImage1
{
$(RM) $(<)
mkisofs -b $(BOOTIMG) -r -J -V bootimg -o $(<) $(>[1]) $(>[2-])
mkisofs -b $(BOOTIMG) -r -J -V bootimg -o $(<) $(>[1]) $(>[2-]) \
|| genisoimage -b $(BOOTIMG) -r -J -V bootimg -o $(<) $(>[1]) $(>[2-])
}