From 64112afd75cc9bc43ab86dde930f84c808e31882 Mon Sep 17 00:00:00 2001 From: Hamish Coleman Date: Fri, 30 Jun 2017 09:00:15 +0800 Subject: [PATCH] Ensure that the iso extract targets dont ever pause for interactive input --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8f100a5..7d3ae11 100644 --- a/Makefile +++ b/Makefile @@ -279,9 +279,9 @@ $(DEPSDIR)/slice.insert.deps: Makefile # Extract the "embedded" fat file system from a given iso. %.iso.extract: %.iso - mcopy -s -i $^@@$(FAT_OFFSET) :: $@ + mcopy -n -s -i $^@@$(FAT_OFFSET) :: $@ %.iso.orig.extract: %.iso.orig - mcopy -s -i $^@@$(FAT_OFFSET) :: $@ + mcopy -n -s -i $^@@$(FAT_OFFSET) :: $@ ## Use the system provided geteltorito script, if there is one #GETELTORITO := $(shell if type geteltorito >/dev/null; then echo geteltorito; else echo ./geteltorito; fi)