Skip to content
Snippets Groups Projects
Commit 840aa6b6 authored by minute's avatar minute
Browse files

via erlehmann: Explain why stdout to stderr redirect is necessary for make invocation

parent c2d0386b
No related branches found
No related tags found
1 merge request!12RC1 of MNT Reform System Image and Rescue Image
...@@ -44,6 +44,10 @@ redo "${LINUX_D}"/arch/arm64/boot/dts/freescale/imx8mq.dtsi ...@@ -44,6 +44,10 @@ redo "${LINUX_D}"/arch/arm64/boot/dts/freescale/imx8mq.dtsi
git apply "${PATCHFILE}" git apply "${PATCHFILE}"
done done
# By default, make writes diagnostic messages to standard out, not
# standard error. Therefore we redirect stdout to stderr for make,
# as redo would write anything on stdout to the resulting target …
>&2 make -j "$(nproc)" freescale/imx8mq-mnt-reform2.dtb >&2 make -j "$(nproc)" freescale/imx8mq-mnt-reform2.dtb
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment