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 | ef0229572628eb834bc849537e4cb9086e052866 (patch) | |
tree | 921db9a5a4d6b59e4f959315c12c4959183445bd /eclass/ruby.eclass | |
parent | masked one more kde 4.3 dep (diff) | |
download | historical-ef0229572628eb834bc849537e4cb9086e052866.tar.gz historical-ef0229572628eb834bc849537e4cb9086e052866.tar.bz2 historical-ef0229572628eb834bc849537e4cb9086e052866.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 } |