diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2004-10-26 22:54:07 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2004-10-26 22:54:07 +0000 |
commit | f2b36ac61f65e2e90655c0781e157bc4ca42bdd7 (patch) | |
tree | 0978c4dfd6e8752ec6881f4ad51981022fc6498d /eclass | |
parent | Stable amd64. (diff) | |
download | historical-f2b36ac61f65e2e90655c0781e157bc4ca42bdd7.tar.gz historical-f2b36ac61f65e2e90655c0781e157bc4ca42bdd7.tar.bz2 historical-f2b36ac61f65e2e90655c0781e157bc4ca42bdd7.zip |
Fix RDEPEND
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/bash-completion.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/bash-completion.eclass b/eclass/bash-completion.eclass index 3b1ca99d04db..c02ed0a8dbbd 100644 --- a/eclass/bash-completion.eclass +++ b/eclass/bash-completion.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/bash-completion.eclass,v 1.1 2004/10/26 22:28:22 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/bash-completion.eclass,v 1.2 2004/10/26 22:54:07 ka0ttic Exp $ # # Simple eclass that provides an interface for installing # contributed (ie not included in bash-completion proper) @@ -14,7 +14,8 @@ ECLASS="bash-completion" INHERITED="${INHERITED} ${ECLASS}" IUSE="${IUSE} bash-completion" -RDEPEND="bash-completion? ( app-shells/bash-completion )" +RDEPEND="${RDEPEND} + bash-completion? ( app-shells/bash-completion )" # dobashcompletion <file> <new file> # First arg, <file>, is required and is the location of the bash-completion |