diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-03-13 19:37:28 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-03-13 19:37:28 +0000 |
commit | c484b92174b376eeda27965b12ff23313473c3b4 (patch) | |
tree | 438495a297d30e423ea05d3b4a5c6246d92d3e50 /eclass | |
parent | Fix up gtk+-2 dependencies (diff) | |
download | historical-c484b92174b376eeda27965b12ff23313473c3b4.tar.gz historical-c484b92174b376eeda27965b12ff23313473c3b4.tar.bz2 historical-c484b92174b376eeda27965b12ff23313473c3b4.zip |
Always explicitely return 0.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/virtualx.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 4cf3ec7c8506..3634e4a99524 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/virtualx.eclass,v 1.37 2011/03/13 08:25:36 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/virtualx.eclass,v 1.38 2011/03/13 19:37:28 scarabeus Exp $ # Original author: Martin Schlemmer <azarah@gentoo.org> @@ -159,6 +159,8 @@ virtualmake() { # die if our command failed [[ ${retval} -ne 0 ]] && die "${FUNCNAME}: the ${VIRTUALX_COMMAND} failed." + + return 0 # always return 0, it can be altered by failed kill for Xvfb } # @FUNCTION: Xmake |