diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-08-04 11:50:23 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-08-04 11:50:23 +0000 |
commit | 52f83908a601accfa65479f610e8a19975f0fecf (patch) | |
tree | ed33fb587bc491ebe714916822974fde9aaf12d0 /eclass/ruby.eclass | |
parent | masked one more kde 4.3 dep (diff) | |
download | gentoo-2-52f83908a601accfa65479f610e8a19975f0fecf.tar.gz gentoo-2-52f83908a601accfa65479f610e8a19975f0fecf.tar.bz2 gentoo-2-52f83908a601accfa65479f610e8a19975f0fecf.zip |
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.
Diffstat (limited to 'eclass/ruby.eclass')
-rw-r--r-- | eclass/ruby.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
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 } |