diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-04-12 07:38:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-04-12 07:38:33 +0000 |
commit | c6bda2545eb378bc7d7ce3cf0891511afd90cfc9 (patch) | |
tree | 92080819d4e182910a26f4889e11ac6dfd876a30 /eclass | |
parent | Initial ebuild by Dick Marinus, Rene Zbinden, Juan Diego Calle, and me #116913. (diff) | |
download | gentoo-2-c6bda2545eb378bc7d7ce3cf0891511afd90cfc9.tar.gz gentoo-2-c6bda2545eb378bc7d7ce3cf0891511afd90cfc9.tar.bz2 gentoo-2-c6bda2545eb378bc7d7ce3cf0891511afd90cfc9.zip |
set S when running elibtoolize so we get expected behavior #265319 by Michael Haubenwallner
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/autotools.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 96decac70d04..de5e1ec04bc9 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.83 2009/04/04 17:45:42 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.84 2009/04/12 07:38:33 vapier Exp $ # @ECLASS: autotools.eclass # @MAINTAINER: @@ -111,8 +111,8 @@ eautoreconf() { [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 # Call it here to prevent failures due to elibtoolize called _before_ - # eautoreconf. - elibtoolize + # eautoreconf. We set $S because elibtoolize runs on that #265319 + S=${pwd} elibtoolize return 0 } |