cdrom: mkisofs seems to not like the order of the arguments

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2018-07-16 22:35:21 +01:00
parent 479d82d1b8
commit 3deac294f5

View File

@@ -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
###############################################################################