From 3a2a752e1eb1b9a57d62e6982461456c9693d34c Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Tue, 20 Aug 2013 22:00:10 -0400 Subject: alpm: log errors for scriptlets terminated by a signal Fixes FS#36618. Signed-off-by: Dave Reisner Signed-off-by: Allan McRae --- lib/libalpm/util.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'lib') diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c index f1f760a5..19a8612f 100644 --- a/lib/libalpm/util.c +++ b/lib/libalpm/util.c @@ -599,6 +599,15 @@ int _alpm_run_chroot(alpm_handle_t *handle, const char *cmd, char *const argv[]) _alpm_log(handle, ALPM_LOG_ERROR, _("command failed to execute correctly\n")); retval = 1; } + } else if(WIFSIGNALED(status) != 0) { + char *signal_description = strsignal(WTERMSIG(status)); + /* strsignal can return NULL on some (non-Linux) platforms */ + if(signal_description == NULL) { + signal_description = _("Unknown signal"); + } + _alpm_log(handle, ALPM_LOG_ERROR, _("command terminated by signal %d: %s\n"), + WTERMSIG(status), signal_description); + retval = 1; } } -- cgit v1.2.3-24-g4f1b