diff options
author | Hans de Graaff <graaff@gentoo.org> | 2011-10-05 17:46:20 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2011-10-05 17:46:20 +0000 |
commit | b0b12c6d70bd13c90ff269f30c0033db627dd61b (patch) | |
tree | 530fb1c762b0609384aab4cb3b82567fd20fcc0f /eclass | |
parent | remove old (diff) | |
download | gentoo-2-b0b12c6d70bd13c90ff269f30c0033db627dd61b.tar.gz gentoo-2-b0b12c6d70bd13c90ff269f30c0033db627dd61b.tar.bz2 gentoo-2-b0b12c6d70bd13c90ff269f30c0033db627dd61b.zip |
Set up java vm properly when using jruby. Fixes problems reported in bug 384901. Thanks to matsuu for diagnosis and patch.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ruby-ng.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass index bbc5c5483d93..7d47ecdf64e1 100644 --- a/eclass/ruby-ng.eclass +++ b/eclass/ruby-ng.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.39 2011/08/22 04:46:32 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.40 2011/10/05 17:46:20 graaff Exp $ # @ECLASS: ruby-ng.eclass # @MAINTAINER: @@ -68,7 +68,7 @@ # (e.g. selenium's firefox driver extension). When set this argument is # passed to "grep -E" to remove reporting of these shared objects. -inherit eutils toolchain-funcs +inherit eutils java-utils-2 toolchain-funcs EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_test src_install pkg_setup @@ -394,6 +394,8 @@ ruby-ng_pkg_setup() { # before doing anything; by leaving the parameters empty we know # it's a special case. _ruby_each_implementation + + use ruby_targets_jruby && java-pkg_setup-vm } # @FUNCTION: ruby-ng_src_unpack |