mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
f9653cbaac
We're currently missing log output in cases where `configure` fails which returns 77 as its error code: make[3]: *** [Makefile:118: elfutils-0.188/.configured_889556d2f423f99e091beece9c8d870a] Error 77 So lets adjust the regexps so they can handle multiple digits. Signed-off-by: Petr Štetiar <ynezz@true.cz>
16 lines
426 B
Bash
Executable File
16 lines
426 B
Bash
Executable File
#!/bin/bash
|
|
|
|
original_exit_code="${ret:-1}"
|
|
log_dir_path="${1:-logs}"
|
|
context="${2:-10}"
|
|
|
|
show_make_build_errors() {
|
|
grep -slr 'make\[[[:digit:]]\+\].*Error [[:digit:]]\+$' "$log_dir_path" | while IFS= read -r log_file; do
|
|
printf "====== Make errors from %s ======\n" "$log_file";
|
|
grep -r -C"$context" 'make\[[[:digit:]]\+\].*Error [[:digit:]]\+$' "$log_file" ;
|
|
done
|
|
}
|
|
|
|
show_make_build_errors
|
|
exit "$original_exit_code"
|