From 0d9151c9ff7935d618ba4718f15136a0e185936b Mon Sep 17 00:00:00 2001 From: Matt Madia Date: Sat, 30 Nov 2013 08:27:48 -0500 Subject: [PATCH] Add genisoimage support to actions BuildCDBootImage1. --- build/jam/ImageRules | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/jam/ImageRules b/build/jam/ImageRules index a1b5b047c7..a78f1f3f01 100644 --- a/build/jam/ImageRules +++ b/build/jam/ImageRules @@ -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-]) }