diff options
author | 2010-05-01 16:05:45 +0000 | |
---|---|---|
committer | 2010-05-01 16:05:45 +0000 | |
commit | 6ad7cd5552370609ba2ed1f28fac39e0a3207dde (patch) | |
tree | 9b787d773ea9eba755eefda7b28efb4ebf901761 /eclass/ruby-ng.eclass | |
parent | Fix building with GCC 4.5+ wrt #317991 by Kacper Kowalik. (diff) | |
download | historical-6ad7cd5552370609ba2ed1f28fac39e0a3207dde.tar.gz historical-6ad7cd5552370609ba2ed1f28fac39e0a3207dde.tar.bz2 historical-6ad7cd5552370609ba2ed1f28fac39e0a3207dde.zip |
Don't print errors during unpack because the directory does not exist yet.
Diffstat (limited to 'eclass/ruby-ng.eclass')
-rw-r--r-- | eclass/ruby-ng.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass index 12ac03e90058..4e5a3ec4710d 100644 --- a/eclass/ruby-ng.eclass +++ b/eclass/ruby-ng.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.12 2010/04/30 17:40:10 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.13 2010/05/01 16:05:45 flameeyes Exp $ # # @ECLASS: ruby-ng.eclass # @MAINTAINER: @@ -223,7 +223,7 @@ _ruby_invoke_environment() { # called. if [[ ${sub_S} = *"*" ]]; then pushd "${WORKDIR}"/all &>/dev/null - sub_S=$(eval ls -d ${sub_S}) + sub_S=$(eval ls -d ${sub_S} 2>/dev/null) popd &>/dev/null fi |