You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-power/pm-utils/files/1.4.1-inhibit-on-right-stat...

21 lines
568 B

Description: Do not use the exit status of log rather the exit status of the hook.
http://bugs.freedesktop.org/show_bug.cgi?id=32210
http://bugs.gentoo.org/360673
--- pm/pm-functions.in
+++ pm/pm-functions.in
@@ -197,9 +197,11 @@
# rest of args passed to hook unchanged.
log "Running hook $*:"
hook_ok "$1" && "$@"
+ # log() changes the return value, so save it for later
+ local status=$?
log ""
log -n "$*: "
- hook_exit_status $? && LAST_HOOK="${1##*/}" || inhibit
+ hook_exit_status $status && LAST_HOOK="${1##*/}" || inhibit
}
if profiling; then