diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2005-06-09 15:25:56 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2005-06-09 15:25:56 +0000 |
commit | e48a0d0e53ab71fe79ae31e63532f02083944c09 (patch) | |
tree | 0193bcd8b71657ae38350542c5394d3ef12f763c /eclass | |
parent | Stable on sparc (diff) | |
download | gentoo-2-e48a0d0e53ab71fe79ae31e63532f02083944c09.tar.gz gentoo-2-e48a0d0e53ab71fe79ae31e63532f02083944c09.tar.bz2 gentoo-2-e48a0d0e53ab71fe79ae31e63532f02083944c09.zip |
sys-apps/shadow is needed for useradd, etc, bug #94745
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/eutils.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index 6fbf831d191e..ba7bb7aed04d 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.180 2005/06/03 21:58:01 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.181 2005/06/09 15:25:56 azarah Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -13,7 +13,8 @@ inherit multilib ECLASS=eutils INHERITED="$INHERITED $ECLASS" -DEPEND="!bootstrap? ( sys-devel/patch )" +DEPEND="!bootstrap? ( sys-devel/patch userland_GNU? ( sys-apps/shadow ) )" +# sys-apps/shadow is needed for useradd, etc, bug #94745. DESCRIPTION="Based on the ${ECLASS} eclass" |