diff options
author | Henrik Brix Andersen <brix@gentoo.org> | 2005-07-07 12:05:40 +0000 |
---|---|---|
committer | Henrik Brix Andersen <brix@gentoo.org> | 2005-07-07 12:05:40 +0000 |
commit | 6852eb83f1bb3103c51e0b5aee746d43ad3ab29a (patch) | |
tree | a715f39add5d445826153c2d42320598ca3b8c64 /eclass | |
parent | sync IUSE (+arts) (diff) | |
download | gentoo-2-6852eb83f1bb3103c51e0b5aee746d43ad3ab29a.tar.gz gentoo-2-6852eb83f1bb3103c51e0b5aee746d43ad3ab29a.tar.bz2 gentoo-2-6852eb83f1bb3103c51e0b5aee746d43ad3ab29a.zip |
Fixed DEPEND/RDEPEND issue.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/linux-mod.eclass | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass index 81c634c2617e..3cba73611ed2 100644 --- a/eclass/linux-mod.eclass +++ b/eclass/linux-mod.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/linux-mod.eclass,v 1.45 2005/07/06 20:53:20 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.46 2005/07/07 12:05:40 brix Exp $ # Description: This eclass is used to interface with linux-info in such a way # to provide the functionality required and initial functions @@ -85,10 +85,11 @@ EXPORT_FUNCTIONS pkg_setup pkg_postinst src_install src_compile pkg_postrm IUSE="${IUSE} pcmcia" SLOT="0" DESCRIPTION="Based on the $ECLASS eclass" -DEPEND="virtual/linux-sources - sys-apps/sed - virtual/modutils +RDEPEND="virtual/modutils pcmcia? ( virtual/pcmcia )" +DEPEND="${RDEPEND} + virtual/linux-sources + sys-apps/sed" # eclass utilities # ---------------------------------- |