summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMaciej Mrozowski <reavertm@gentoo.org>2010-09-12 21:29:51 +0000
committerMaciej Mrozowski <reavertm@gentoo.org>2010-09-12 21:29:51 +0000
commitec94a2035cfac749e65493d3243c73730bd118c2 (patch)
tree38afd31bbba3f7f7d6fb9ee3a671d61da7e514b2 /eclass
parentversion bump (diff)
downloadgentoo-2-ec94a2035cfac749e65493d3243c73730bd118c2.tar.gz
gentoo-2-ec94a2035cfac749e65493d3243c73730bd118c2.tar.bz2
gentoo-2-ec94a2035cfac749e65493d3243c73730bd118c2.zip
Accept user-supplied configure args as phase function parameters as well
Diffstat (limited to 'eclass')
-rw-r--r--eclass/autotools-utils.eclass4
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
}