From 59e0cdef8d97610eda3ea3f28bdf562376a828a0 Mon Sep 17 00:00:00 2001 From: Davide Pesavento Date: Sun, 27 Dec 2015 01:04:28 +0100 Subject: virtualx.eclass: fix diagnostic messages in virtx() Gentoo-Bug: 569876 --- eclass/virtualx.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eclass') diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index db1ecfa58b17..b56baa670acf 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -205,7 +205,7 @@ virtx() { export DISPLAY=:${XDISPLAY} # Do not break on error, but setup $retval, as we need # to kill Xvfb - debug-print "${FUNCNAME}: ${VIRTUALX_COMMAND} \"$@\"" + debug-print "${FUNCNAME}: $@" if has "${EAPI}" 2 3; then "$@" retval=$? @@ -218,7 +218,7 @@ virtx() { kill $(cat /tmp/.X${XDISPLAY}-lock) # die if our command failed - [[ ${retval} -ne 0 ]] && die "${FUNCNAME}: the ${VIRTUALX_COMMAND} failed." + [[ ${retval} -ne 0 ]] && die "Failed to run '$@'" return 0 # always return 0, it can be altered by failed kill for Xvfb } -- cgit v1.2.3-65-gdbad