You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppress error meaningless error messages when building newlib PDF
There is a know issue when building newlib PDFs with certain texinfo
versions, hence build-elf32.sh does this build three times. However, until
now error message from `make_target_ordered` was still emitted into the
stdout, and what could confuse user, since error message is shown, but build
process continues. This patch hides those message by simply redirecting
stdout to /dev/null.
Another option would be to make a special version of `make_target_ordered`,
for example `make_target_ordered_quiet` or add an argument to an existing
function. However I felt that this might be an overcomplication to solve
problem with some particular case.
Signed-off-by: Anton Kolesov <[email protected]>
0 commit comments