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.eclass
Date: Tue, 04 Aug 2009 11:50:25
Message-Id: E1MYIX9-0002A5-Nb@stork.gentoo.org
1 flameeyes 09/08/04 11:50:23
2
3 Modified: ruby.eclass
4 Log:
5 Don't use make and pass ${MAKEOPTS} and ${EXTRA_EMAKE} later.
6
7 Use emake directly, which handles the options, to comply more with the
8 Gentoo standards.
9
10 Revision Changes Path
11 1.76 eclass/ruby.eclass
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/ruby.eclass?rev=1.76&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/ruby.eclass?rev=1.76&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/ruby.eclass?r1=1.75&r2=1.76
16
17 Index: ruby.eclass
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/eclass/ruby.eclass,v
20 retrieving revision 1.75
21 retrieving revision 1.76
22 diff -u -r1.75 -r1.76
23 --- ruby.eclass 3 Mar 2009 15:51:54 -0000 1.75
24 +++ ruby.eclass 4 Aug 2009 11:50:23 -0000 1.76
25 @@ -1,6 +1,6 @@
26 # Copyright 1999-2004 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/eclass/ruby.eclass,v 1.75 2009/03/03 15:51:54 a3li Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby.eclass,v 1.76 2009/08/04 11:50:23 flameeyes Exp $
30 #
31 # @ECLASS: ruby.eclass
32 # @MAINTAINER:
33 @@ -133,7 +133,7 @@
34
35 ruby_emake() {
36 if [ -f makefiles -o -f GNUmakefile -o -f makefile -o -f Makefile ] ; then
37 - make CC="$(tc-getCC)" CXX="$(tc-getCXX)" DLDFLAGS="${LDFLAGS}" ${MAKEOPTS} ${EXTRA_EMAKE} "$@" || die "emake for ruby failed"
38 + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" DLDFLAGS="${LDFLAGS}" "$@" || die "emake for ruby failed"
39 fi
40 }