From: Ian Jackson Date: Mon, 17 May 2021 16:44:51 +0000 (+0100) Subject: Makefile: Fix example test bundle building not to produce noise X-Git-Tag: otter-0.6.0~185 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=d43ccf2b299cf960f4755db4a987636f6334169e;p=otter.git Makefile: Fix example test bundle building not to produce noise zip simply ignores missing files, so the dupes were harmless. Signed-off-by: Ian Jackson --- diff --git a/Makefile b/Makefile index aa628720..f4704c21 100644 --- a/Makefile +++ b/Makefile @@ -331,7 +331,8 @@ examples/%.zip: $(MAKEFILE_DEP) zip $(ZIPFLAGS) -DXy ../$(notdir $@).tmp $(ZIP_INPUTS) mv -f $@.tmp $@ -examples/test-bundle.zip: ZIP_INPUTS=$(EXAMPLE_BUNDLE_INPUT_DEPS) \ +examples/test-bundle.zip: ZIP_INPUTS=$(EXAMPLE_BUNDLE_INPUT_DEPS) +examples/test-bundle.zip: \ $(addprefix examples/test-bundle/, $(EXAMPLE_BUNDLE_INPUT_DEPS)) examples/big-bundle.zip: examples/big-bundle/otter.toml