diff options
author | Robert Coie <rac@gentoo.org> | 2004-09-25 19:59:51 +0000 |
---|---|---|
committer | Robert Coie <rac@gentoo.org> | 2004-09-25 19:59:51 +0000 |
commit | aaa7541c89bd3c9f75731009f5905b8bc3084578 (patch) | |
tree | 690ddc836c6427390a55f75c07d04a3beec2709d /eclass | |
parent | Fix messed up ChangeLog (Manifest recommit) (diff) | |
download | gentoo-2-aaa7541c89bd3c9f75731009f5905b8bc3084578.tar.gz gentoo-2-aaa7541c89bd3c9f75731009f5905b8bc3084578.tar.bz2 gentoo-2-aaa7541c89bd3c9f75731009f5905b8bc3084578.zip |
eliminate libtool dependency to address bug 65209
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/libtool.eclass | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/eclass/libtool.eclass b/eclass/libtool.eclass index 4d68528b2669..433667c4a74f 100644 --- a/eclass/libtool.eclass +++ b/eclass/libtool.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/libtool.eclass,v 1.33 2004/09/25 06:37:30 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.34 2004/09/25 19:59:51 rac Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -10,7 +10,15 @@ ECLASS="libtool" INHERITED="${INHERITED} ${ECLASS}" -DEPEND="!bootstrap? ( sys-devel/libtool )" +# 2004.09.25 rac +# i have verified that at least one package can use this eclass and +# build properly even without libtool installed yet, probably using +# the files in the distribution. eliminating this dependency fixes +# bug 65209, which is a showstopper for people doing installs using +# stageballs <3. if anybody decides to revert this, please attempt +# to find an alternate way of resolving that bug at the same time. + +#DEPEND="!bootstrap? ( sys-devel/libtool )" DESCRIPTION="Based on the ${ECLASS} eclass" |