diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-04-02 02:56:07 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-04-02 02:56:07 +0000 |
commit | 2ffd8284f4a1c10cc33c89dbe36f6c550eb92c0d (patch) | |
tree | 569e6db10dec8f44d6440c00d9ba92bba5c81270 /eclass/games.eclass | |
parent | fixing Manifest (diff) | |
download | gentoo-2-2ffd8284f4a1c10cc33c89dbe36f6c550eb92c0d.tar.gz gentoo-2-2ffd8284f4a1c10cc33c89dbe36f6c550eb92c0d.tar.bz2 gentoo-2-2ffd8284f4a1c10cc33c89dbe36f6c550eb92c0d.zip |
Making games_ut_unpack *WAY* less chatty.
Diffstat (limited to 'eclass/games.eclass')
-rw-r--r-- | eclass/games.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass index 6459abd88982..d83f6c9619f7 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.61 2004/04/02 02:18:15 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.62 2004/04/02 02:56:07 wolf31o2 Exp $ # # devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org # @@ -143,12 +143,12 @@ games_ut_unpack() { die "You must provide an argument to games_ut_unpack" fi if [ -f "${ut_unpack}" ]; then - ./ucc-bin decompress ${ut_unpack} --nohomedir 2>&1 \ + ./ucc-bin decompress ${ut_unpack} --nohomedir >/dev/null 2>&1 \ || die "uncompressing file ${ut_unpack}" fi if [ -d "${ut_unpack}" ]; then for f in `find ${ut_unpack} -name '*.uz*' -printf '%f '` ; do - ./ucc-bin decompress ${ut_unpack}/${f} --nohomedir 2>&1 \ + ./ucc-bin decompress ${ut_unpack}/${f} --nohomedir >/dev/null 2>&1 \ || die "uncompressing file ${f}" rm -f ${ut_unpack}/${f} || die "deleting compressed file ${f}" done |