From 52f83908a601accfa65479f610e8a19975f0fecf Mon Sep 17 00:00:00 2001 From: Diego Elio Pettenò Date: Tue, 4 Aug 2009 11:50:23 +0000 Subject: Don't use make and pass ${MAKEOPTS} and ${EXTRA_EMAKE} later. Use emake directly, which handles the options, to comply more with the Gentoo standards. --- eclass/ruby.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eclass/ruby.eclass') diff --git a/eclass/ruby.eclass b/eclass/ruby.eclass index 29e8c8eb83c0..bc39ff1d34e6 100644 --- a/eclass/ruby.eclass +++ b/eclass/ruby.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ruby.eclass,v 1.75 2009/03/03 15:51:54 a3li Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby.eclass,v 1.76 2009/08/04 11:50:23 flameeyes Exp $ # # @ECLASS: ruby.eclass # @MAINTAINER: @@ -133,7 +133,7 @@ ruby_econf() { ruby_emake() { if [ -f makefiles -o -f GNUmakefile -o -f makefile -o -f Makefile ] ; then - make CC="$(tc-getCC)" CXX="$(tc-getCXX)" DLDFLAGS="${LDFLAGS}" ${MAKEOPTS} ${EXTRA_EMAKE} "$@" || die "emake for ruby failed" + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" DLDFLAGS="${LDFLAGS}" "$@" || die "emake for ruby failed" fi } -- cgit v1.2.3-65-gdbad