From: Jan Stancek on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/3638#note_2313327632 It's the new debugedit package, it used to ignore retcode from gdb-add-index, now it aborts: debugedit-5.0-16.el10.x86_64 ``` # Add .gdb_index if requested. if $include_gdb_index; then if type gdb-add-index >/dev/null 2>&1; then gdb-add-index "$f" else echo >&2 "*** ERROR: GDB index requested, but no gdb-add-index installed" exit 2 fi fi ``` vs debugedit-5.1-2.el10.x86_64 ``` # Add .gdb_index if requested. if $include_gdb_index; then if type gdb-add-index >/dev/null 2>&1; then if test "$f_writable" = "false"; then chmod u+w "$f" fi gdb-add-index "$f" || { status=$? echo >&2 "*** ERROR:: GDB exited with exit status $status during index generation" if test "$f_writable" = "false"; then chmod u-w "$f" fi return 2 } if test "$f_writable" = "false"; then chmod u-w "$f" fi else echo >&2 "*** ERROR: GDB index requested, but no gdb-add-index installed" return 2 fi fi ``` -- _______________________________________________ kernel mailing list -- kernel@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to kernel-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/kernel@xxxxxxxxxxxxxxxxxxxxxxx Do not reply to spam, report it: https://pagure.io/fedora-infrastructure/new_issue