diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-12-02 16:11:32 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-12-02 16:11:32 +0000 |
commit | c4040c5770db9fc0e594264b7d6a4d4eed0c1b74 (patch) | |
tree | 96b695e1b0fefd79c1315980b9ff17837e7b7f1e /eclass | |
parent | Remove old version as well. (diff) | |
download | gentoo-2-c4040c5770db9fc0e594264b7d6a4d4eed0c1b74.tar.gz gentoo-2-c4040c5770db9fc0e594264b7d6a4d4eed0c1b74.tar.bz2 gentoo-2-c4040c5770db9fc0e594264b7d6a4d4eed0c1b74.zip |
Drop automake-1.4 dependency, as it's useless here.
The eclass uses autotools.eclass to rebuild autotools, and since it
doesn't set WANT_AUTOMAKE, it'll always use the latest version; the
dependency over automake-1.4 is, thus, totally bogus.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/fox.eclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/fox.eclass b/eclass/fox.eclass index 176ed6ad64e5..9085ec3faab7 100644 --- a/eclass/fox.eclass +++ b/eclass/fox.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/fox.eclass,v 1.10 2010/10/31 22:14:44 mabi Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/fox.eclass,v 1.11 2010/12/02 16:11:32 flameeyes Exp $ # @ECLASS: fox.eclass # @MAINTAINER: @@ -81,7 +81,6 @@ fi DEPEND="${DOXYGEN_DEP} ${RESWRAP_DEP} - =sys-devel/automake-1.4* >=sys-apps/sed-4" S="${WORKDIR}/fox-${FOX_PV}" @@ -135,7 +134,7 @@ fox_src_configure() { || FOXCONF+=" --enable-release" econf ${FOXCONF} \ - $(use_with profile profiling) + $(use_with profile profiling) } |