From a24ca489c8ced1509ceeaedbc4470f1dbe9e81b1 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sat, 14 Oct 2023 13:51:32 -0400 Subject: [PATCH] Don't use -DD option. The Info-ZIP version of unzip supports this but the FreeBSD doesn't. We can get the same result by touching the file after extract. --- GNUmakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 5f2559a..ad4f6b3 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -3,7 +3,7 @@ export SOURCE_PORT=/usr/games/chocolate-doom # Quiet output, convert to lower case, don't restore timestamps, # overwrite without prompt, extract to extract/ directory. -UNZIPOPTS = -q -LL -DD -o -d extract +UNZIPOPTS = -q -LL -o -d extract OUTPUTS = WADS = extract/miniwad.wad @@ -12,6 +12,7 @@ all: check extract/%: unzip $(UNZIPOPTS) $< $(subst extract/,,$@) + touch $@ extract/miniwad.wad: miniwad.zip testrunner: $(SOURCE_PORT) extract/miniwad.wad