summaryrefslogtreecommitdiff
path: root/scripts/Makefile.lib
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@openbsd.org>2017-01-08 18:11:27 (GMT)
committerTom Rini <trini@konsulko.com>2017-01-14 21:47:15 (GMT)
commit208db781cad4c24f538658a9cb17e24fa43ca3c9 (patch)
tree3a40865e83c2f657a287fe19fb64dca6750ef515 /scripts/Makefile.lib
parentf19f1315039c1deb83bc321fbef1113cdaa435d1 (diff)
downloadu-boot-208db781cad4c24f538658a9cb17e24fa43ca3c9.tar.xz
Avoid non-portable sed construct
Using \n in a substitution is a GNU extension. Use the 'G" command instead to insert the desired line. Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
Diffstat (limited to 'scripts/Makefile.lib')
-rw-r--r--scripts/Makefile.lib2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
index 81ac7eb..23be324 100644
--- a/scripts/Makefile.lib
+++ b/scripts/Makefile.lib
@@ -311,7 +311,7 @@ quiet_cmd_dtc = DTC $@
# Bring in any U-Boot-specific include after the '/dts-v1/;' header
cmd_dtc = mkdir -p $(dir ${dtc-tmp}) ; \
cat $< $(if $(u_boot_dtsi),\
- | sed 's%^/ {$$%\#include \"$(u_boot_dtsi)\"\n&%') | \
+ | sed '/^\/ {$$/{x;s%$$%\#include \"$(u_boot_dtsi)\"%;G;}') | \
$(CPP) $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) - ; \
$(DTC) -O dtb -o $@ -b 0 \
-i $(dir $<) $(DTC_FLAGS) \