diff options
author | Maciej Mrozowski <reavertm@gentoo.org> | 2010-09-12 21:29:51 +0000 |
---|---|---|
committer | Maciej Mrozowski <reavertm@gentoo.org> | 2010-09-12 21:29:51 +0000 |
commit | f2a307e114c45e11f9cca3977d42b5512e46122f (patch) | |
tree | bd4e413b2253222e8b7d04c4f764aa1a19ee31f2 /eclass/autotools-utils.eclass | |
parent | Add prefix support and keywords, switch to EAPI=3 (diff) | |
download | historical-f2a307e114c45e11f9cca3977d42b5512e46122f.tar.gz historical-f2a307e114c45e11f9cca3977d42b5512e46122f.tar.bz2 historical-f2a307e114c45e11f9cca3977d42b5512e46122f.zip |
Accept user-supplied configure args as phase function parameters as well
Diffstat (limited to 'eclass/autotools-utils.eclass')
-rw-r--r-- | eclass/autotools-utils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/autotools-utils.eclass b/eclass/autotools-utils.eclass index 502b834e4a6e..e7d2d2162692 100644 --- a/eclass/autotools-utils.eclass +++ b/eclass/autotools-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.3 2010/07/20 09:49:45 reavertm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.4 2010/09/12 21:29:51 reavertm Exp $ # @ECLASS: autotools-utils.eclass # @MAINTAINER: @@ -211,7 +211,7 @@ autotools-utils_src_configure() { _check_build_dir mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null - base_src_configure "${econfargs[@]}" + base_src_configure "${econfargs[@]}" "$@" popd > /dev/null } |