From 041e59882b06d8004232cfe686bc90f8c642f7f3 Mon Sep 17 00:00:00 2001 Message-Id: <041e59882b06d8004232cfe686bc90f8c642f7f3.1715146878.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 19 Dec 2018 12:37:39 +0000 Subject: [PATCH] Makefile: Use `SED' as the build-step label when hacking setup scripts. Organization: Straylight/Edgeware From: Mark Wooding Also, introduce a line break to match future additions. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a1588d2..055b40c 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,8 @@ setup-flavour = $($1_FLAVOUR) $(SETUPS): etc/%-setup.sh: $$(call setup-flavour,$$*)-setup.sh.in Makefile $(V_AT)mkdir -p $(dir $@) - $(call v_tag,GEN)sed 's/@arch@/$($*_ARCH)/g' $< >$@.new && mv $@.new $@ + $(call v_tag,SED)sed 's/@arch@/$($*_ARCH)/g' $< >$@.new && \ + mv $@.new $@ all:: $(TARGETS) -- [mdw]