summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2023-02-01 19:30:21 +0100
committerOndrej Zajicek <santiago@crfreenet.org>2023-02-01 19:30:21 +0100
commit0ab62f267449d6496e753625e37924357fb0aa95 (patch)
treeb08fa45c37e12648782e11aece58650b7b395fb8
parentba348b2029f3c51559bed0bd752c4365793f0ea9 (diff)
Build: Partial revert of one of previous changes
There are many compatibility issues with echo -e, scratch that.
-rw-r--r--nest/Makefile2
1 files changed, 1 insertions, 1 deletions
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