diff options
author | Richard Brown <rbrown@gentoo.org> | 2007-05-17 19:25:52 +0000 |
---|---|---|
committer | Richard Brown <rbrown@gentoo.org> | 2007-05-17 19:25:52 +0000 |
commit | 84a7260e55835b394c4ba2f5d8a69bced28faa5f (patch) | |
tree | 60fc4dea49f99909654bb2ec62114454ec4f9c7b | |
parent | Fix missing Manifest entry for foremost-1.5.ebuild. (diff) | |
download | gentoo-2-84a7260e55835b394c4ba2f5d8a69bced28faa5f.tar.gz gentoo-2-84a7260e55835b394c4ba2f5d8a69bced28faa5f.tar.bz2 gentoo-2-84a7260e55835b394c4ba2f5d8a69bced28faa5f.zip |
Explicitly add ruby to RDEPEND
-rw-r--r-- | eclass/ruby.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/ruby.eclass b/eclass/ruby.eclass index e0eaf0e4da8b..28caebb147f0 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.64 2007/04/07 08:52:46 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby.eclass,v 1.65 2007/05/17 19:25:52 rbrown Exp $ # # Author: Mamoru KOMACHI <usata@gentoo.org> # @@ -48,7 +48,8 @@ LICENSE="Ruby" # If you specify RUBY_OPTIONAL you also need to take care of ruby useflag and dependency. if [[ ${RUBY_OPTIONAL} != "yes" ]]; then - DEPEND="virtual/ruby" + DEPEND="${DEPEND} virtual/ruby" + RDEPEND="${RDEPEND} virtual/ruby" fi [[ -z "${RUBY}" ]] && export RUBY=/usr/bin/ruby |