diff options
author | Mike Gilbert <floppym@gentoo.org> | 2012-07-17 03:56:26 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2012-07-17 03:56:26 +0000 |
commit | e96b2f59ec39fb7083e44d4918d8b99c3e3f4bd0 (patch) | |
tree | ed130b3067073fd9e6c86b650ffe639cb9b6ac8f /eclass/chromium.eclass | |
parent | Version bump for dev channel release. (diff) | |
download | gentoo-2-e96b2f59ec39fb7083e44d4918d8b99c3e3f4bd0.tar.gz gentoo-2-e96b2f59ec39fb7083e44d4918d8b99c3e3f4bd0.tar.bz2 gentoo-2-e96b2f59ec39fb7083e44d4918d8b99c3e3f4bd0.zip |
Remove -v option from rm command.
Diffstat (limited to 'eclass/chromium.eclass')
-rw-r--r-- | eclass/chromium.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/chromium.eclass b/eclass/chromium.eclass index 2f61be8b1b20..ce916fa5335e 100644 --- a/eclass/chromium.eclass +++ b/eclass/chromium.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/chromium.eclass,v 1.5 2012/05/30 06:15:24 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/chromium.eclass,v 1.6 2012/07/17 03:56:26 floppym Exp $ # @ECLASS: chromium.eclass # @MAINTAINER: @@ -122,7 +122,7 @@ chromium_remove_language_paks() { continue fi if ! use linguas_${lang}; then - rm -v "$(_chromium_crlang ${lang}).pak" || die + rm "$(_chromium_crlang ${lang}).pak" || die fi done } |