From 0ab62f267449d6496e753625e37924357fb0aa95 Mon Sep 17 00:00:00 2001 From: Ondrej Zajicek Date: Wed, 1 Feb 2023 19:30:21 +0100 Subject: [PATCH] Build: Partial revert of one of previous changes There are many compatibility issues with echo -e, scratch that. --- nest/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nest/Makefile b/nest/Makefile index 05a2a9c0..163a1199 100644 --- a/nest/Makefile +++ b/nest/Makefile @@ -5,7 +5,7 @@ $(cf-local) $(o)proto-build.c: Makefile $(lastword $(MAKEFILE_LIST)) $(objdir)/.dir-stamp $(E)echo GEN $@ - $(Q)echo "\n $(patsubst %, void %_build(void);\n,$(PROTO_BUILD))\nvoid protos_build_gen(void) {\n $(patsubst %, %_build();\n,$(PROTO_BUILD))}" > $@ + $(Q)echo "$(patsubst %,void %_build(void); ,$(PROTO_BUILD)) void protos_build_gen(void) { $(patsubst %, %_build(); ,$(PROTO_BUILD))}" > $@ prepare: $(o)proto-build.c