Gentoo Archives: gentoo-commits

From: Tomas Chvatal <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/x11:master commit in: eclass/
Date: Mon, 21 Feb 2011 19:39:44
Message-Id: c3676df02ea586927199c29409f8fdf62ff801ec.scarabeus@gentoo
1 commit: c3676df02ea586927199c29409f8fdf62ff801ec
2 Author: Tomas Chvatal <scarabeus <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 21 19:37:53 2011 +0000
4 Commit: Tomas Chvatal <scarabeus <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 21 19:37:53 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=c3676df0
7
8 virtualx.eclass add two more usefull debug-prints.
9
10 ---
11 eclass/virtualx.eclass | 2 ++
12 1 files changed, 2 insertions(+), 0 deletions(-)
13
14 diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass
15 index 4ac7bed..318067a 100644
16 --- a/eclass/virtualx.eclass
17 +++ b/eclass/virtualx.eclass
18 @@ -143,6 +143,7 @@ virtualmake() {
19 export DISPLAY=:${XDISPLAY}
20 # Do not break on error, but setup $retval, as we need
21 # to kill Xvfb
22 + debug-print "${FUNCNAME}: ${VIRTUALX_COMMAND} \"$@\""
23 ${VIRTUALX_COMMAND} "$@"
24 retval=$?
25
26 @@ -151,6 +152,7 @@ virtualmake() {
27 else
28 debug-print "${FUNCNAME}: attaching to running X display"
29 # Normal make if we can connect to an X display
30 + debug-print "${FUNCNAME}: ${VIRTUALX_COMMAND} \"$@\""
31 ${VIRTUALX_COMMAND} "$@"
32 retval=$?
33 fi