Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ruby-ng.eclass
Date: Sat, 01 May 2010 16:05:50
Message-Id: 20100501160546.50DE82C116@corvid.gentoo.org
1 flameeyes 10/05/01 16:05:45
2
3 Modified: ruby-ng.eclass
4 Log:
5 Don't print errors during unpack because the directory does not exist yet.
6
7 Revision Changes Path
8 1.13 eclass/ruby-ng.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/ruby-ng.eclass?rev=1.13&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/ruby-ng.eclass?rev=1.13&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/ruby-ng.eclass?r1=1.12&r2=1.13
13
14 Index: ruby-ng.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v
17 retrieving revision 1.12
18 retrieving revision 1.13
19 diff -u -r1.12 -r1.13
20 --- ruby-ng.eclass 30 Apr 2010 17:40:10 -0000 1.12
21 +++ ruby-ng.eclass 1 May 2010 16:05:45 -0000 1.13
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2009 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.12 2010/04/30 17:40:10 flameeyes Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.13 2010/05/01 16:05:45 flameeyes Exp $
27 #
28 # @ECLASS: ruby-ng.eclass
29 # @MAINTAINER:
30 @@ -223,7 +223,7 @@
31 # called.
32 if [[ ${sub_S} = *"*" ]]; then
33 pushd "${WORKDIR}"/all &>/dev/null
34 - sub_S=$(eval ls -d ${sub_S})
35 + sub_S=$(eval ls -d ${sub_S} 2>/dev/null)
36 popd &>/dev/null
37 fi