From d43ccf2b299cf960f4755db4a987636f6334169e Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 17 May 2021 17:44:51 +0100 Subject: [PATCH] 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 --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.30.2