From 32a071e67f5c9765d5590545fd6edadfdee59e00 Mon Sep 17 00:00:00 2001 From: Robin Schneider Date: Sat, 24 Jun 2017 21:54:38 +0200 Subject: [PATCH] Remove `-m` from `mcopy` calls used for extracting --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 101865a..915d123 100644 --- a/Makefile +++ b/Makefile @@ -286,9 +286,9 @@ MOUNT_OPTIONS ?= loop,ro # Extract the "embedded" fat file system from a given iso. %.iso.extract: %.iso - mcopy -ms -i $^@@$(FAT_OFFSET) :: $@ + mcopy -s -i $^@@$(FAT_OFFSET) :: $@ %.iso.orig.extract: %.iso.orig - mcopy -ms -i $^@@$(FAT_OFFSET) :: $@ + mcopy -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)