diff options
author | Tristan Heaven <tristan@gentoo.org> | 2008-03-26 14:35:11 +0000 |
---|---|---|
committer | Tristan Heaven <tristan@gentoo.org> | 2008-03-26 14:35:11 +0000 |
commit | 421c37e077a461d306441e4b7ca1f6a3f422edc2 (patch) | |
tree | c2abc04f410476f77aba5ec9167a4906c9d9c31d /eclass/games-ggz.eclass | |
parent | Updated urls (diff) | |
download | historical-421c37e077a461d306441e4b7ca1f6a3f422edc2.tar.gz historical-421c37e077a461d306441e4b7ca1f6a3f422edc2.tar.bz2 historical-421c37e077a461d306441e4b7ca1f6a3f422edc2.zip |
hide stderr when testing ggz-config, bug #214878
Diffstat (limited to 'eclass/games-ggz.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} |