From: Michael Tremer Date: Mon, 16 Jul 2018 21:35:21 +0000 (+0100) Subject: cdrom: mkisofs seems to not like the order of the arguments X-Git-Tag: v2.21-core124~77^2~16 X-Git-Url: http://git.ipfire.org/?p=ipfire-2.x.git;a=commitdiff_plain;h=3deac294f5760a00e42eec0265ded0b10e9291ee cdrom: mkisofs seems to not like the order of the arguments Signed-off-by: Michael Tremer --- diff --git a/lfs/cdrom b/lfs/cdrom index 7fa3999c2f..faaa3dff12 100644 --- a/lfs/cdrom +++ b/lfs/cdrom @@ -56,14 +56,6 @@ ISO_ARGS = -J -r -v \ ISOHYBRID_ARGS = -ifeq "$(EFI)" "1" - ISO_ARGS += \ - -eltorito-alt-boot \ - -e boot/isolinux/efiboot.img - - ISOHYBRID_ARGS += --uefi -endif - ifeq "$(HAS_ISOLINUX)" "1" ISO_ARGS += \ -no-emul-boot \ @@ -73,6 +65,14 @@ ifeq "$(HAS_ISOLINUX)" "1" -c boot/isolinux/boot.catalog endif +ifeq "$(EFI)" "1" + ISO_ARGS += \ + -eltorito-alt-boot \ + -e boot/isolinux/efiboot.img + + ISOHYBRID_ARGS += --uefi +endif + ############################################################################### # Top-level Rules ###############################################################################