diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-12-16 02:36:05 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-12-16 02:36:05 +0000 |
commit | de3a86f16bcc5dcc7d48123d28d401c42f624422 (patch) | |
tree | 560de4f97e780ab7933bc5379dfe3c383fc71da4 | |
parent | fix Xrender include problem if updated headers not installed system wide, bug... (diff) | |
download | gentoo-2-de3a86f16bcc5dcc7d48123d28d401c42f624422.tar.gz gentoo-2-de3a86f16bcc5dcc7d48123d28d401c42f624422.tar.bz2 gentoo-2-de3a86f16bcc5dcc7d48123d28d401c42f624422.zip |
only depend on libtool if not in bootstrap
-rw-r--r-- | eclass/libtool.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/libtool.eclass b/eclass/libtool.eclass index 58098966ee2f..558da06f96e5 100644 --- a/eclass/libtool.eclass +++ b/eclass/libtool.eclass @@ -1,14 +1,14 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # Author: Martin Schlemmer <azarah@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.17 2002/11/08 22:03:45 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.18 2002/12/16 02:36:05 azarah Exp $ # This eclass patches ltmain.sh distributed with libtoolized packages with the # relink and portage patch ECLASS=libtool INHERITED="$INHERITED $ECLASS" -newdepend sys-devel/libtool +newdepend "!bootstrap? ( sys-devel/libtool )" DESCRIPTION="Based on the ${ECLASS} eclass" |