diff options
author | 2008-03-26 14:35:11 +0000 | |
---|---|---|
committer | 2008-03-26 14:35:11 +0000 | |
commit | 79cbf50b9fd376fef8cff6d46479d381eaeb40fd (patch) | |
tree | 6c732d81724cb8e8d526bafa7722c286b4841960 /eclass | |
parent | Updated urls (diff) | |
download | gentoo-2-79cbf50b9fd376fef8cff6d46479d381eaeb40fd.tar.gz gentoo-2-79cbf50b9fd376fef8cff6d46479d381eaeb40fd.tar.bz2 gentoo-2-79cbf50b9fd376fef8cff6d46479d381eaeb40fd.zip |
hide stderr when testing ggz-config, bug #214878
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/games-ggz.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/games-ggz.eclass b/eclass/games-ggz.eclass index eff8cae6711e..972e6b1e9068 100644 --- a/eclass/games-ggz.eclass +++ b/eclass/games-ggz.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games-ggz.eclass,v 1.2 2008/02/18 18:12:16 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games-ggz.eclass,v 1.3 2008/03/26 14:35:11 nyhm Exp $ # For GGZ Gaming Zone packages @@ -41,7 +41,7 @@ games-ggz_update_modules() { || die "${FUNCNAME} can only be used in pkg_postinst or pkg_postrm" # ggz-config needs libggz, so it could be broken - ggz-config -h > /dev/null || return 1 + ggz-config -h &> /dev/null || return 1 local confdir=${ROOT}/etc local moddir=${ROOT}/${GGZ_MODDIR} |