Skip to content

Commit 852d52b

Browse files
committed
Fix invalid DTS includes
Fixes the following build errors: > Error: arch/arm/dts/.rk3036-sdk.dtb.pre.tmp:77.1-10 syntax error > Error: arch/arm/dts/.rk3188-radxarock.dtb.pre.tmp:383.1-10 syntax error The generated DTS had `\#include` instead of `#include` Signed-off-by: Gleb Mazovetskiy <[email protected]>
1 parent 533d602 commit 852d52b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ HOSTCFLAGS_sha1.o := -pedantic
216216
HOSTCFLAGS_sha256.o := -pedantic
217217

218218
quiet_cmd_wrap = WRAP $@
219-
cmd_wrap = echo "\#include <../$(patsubst $(obj)/%,%,$@)>" >$@
219+
cmd_wrap = echo \#"include <../$(patsubst $(obj)/%,%,$@)>" >$@
220220

221221
$(obj)/lib/%.c $(obj)/common/%.c $(obj)/env/%.c:
222222
$(call cmd,wrap)

0 commit comments

Comments
 (0)