diff options
author | Maria Matejka <mq@ucw.cz> | 2022-07-18 10:26:55 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-07-18 10:26:55 +0200 |
commit | 812edb85e14de1d5fe07a246176b4ed1a2ec0054 (patch) | |
tree | 4b4512e7a6e3115e8c822f8540836949eb669038 | |
parent | 636ab95f44efee774343f711ec46e69c6bea4e81 (diff) |
Fixing build issues caused by a nonportable Makefile rule
-rw-r--r-- | nest/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nest/Makefile b/nest/Makefile index 0350c3b6..39617350 100644 --- a/nest/Makefile +++ b/nest/Makefile @@ -6,7 +6,11 @@ $(call proto-build,dev_build) $(proto-build-c): $(lastword $(MAKEFILE_LIST)) $(E)echo GEN $@ - $(Q)echo "#include \"lib/birdlib.h\"\n$(patsubst %,void %(void);\n,$(PROTO_BUILD)) void protos_build_gen(void) { $(patsubst %, %();\n,$(PROTO_BUILD))}" > $@ + $(Q)echo "#include \"lib/birdlib.h\"" > $@ + $(Q)$(patsubst %,echo 'void %(void);' >> $@;,$(PROTO_BUILD)) + $(Q)echo "void protos_build_gen(void) {" >> $@ + $(Q)$(patsubst %,echo ' %();'>>$@;,$(PROTO_BUILD)) + $(Q)echo "}" >> $@ tests_src := tests_targets := $(tests_targets) $(tests-target-files) |