summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2013-02-22 14:42:09 +0000
committerMichał Górny <mgorny@gentoo.org>2013-02-22 14:42:09 +0000
commita21b4845939f6690d324ab7d69108f5985ef2dae (patch)
tree1767401b56b5587e5fbfb91e777b4c02246e9872 /eclass
parentSecurity bump (bug #458390). Removed old (diff)
downloadgentoo-2-a21b4845939f6690d324ab7d69108f5985ef2dae.tar.gz
gentoo-2-a21b4845939f6690d324ab7d69108f5985ef2dae.tar.bz2
gentoo-2-a21b4845939f6690d324ab7d69108f5985ef2dae.zip
Fix passing arguments to phases.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/autotools-multilib.eclass12
2 files changed, 10 insertions, 7 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index df61d3beec6e..91cfc541996c 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.679 2013/02/21 23:18:56 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.680 2013/02/22 14:42:09 mgorny Exp $
+
+ 22 Feb 2013; Michał Górny <mgorny@gentoo.org> autotools-multilib.eclass:
+ Fix passing arguments to phases.
21 Feb 2013; Michał Górny <mgorny@gentoo.org> distutils-r1.eclass:
Support EXAMPLES to install examples in a consistent manner.
diff --git a/eclass/autotools-multilib.eclass b/eclass/autotools-multilib.eclass
index b2b7d02ba9e5..46d90d31dd44 100644
--- a/eclass/autotools-multilib.eclass
+++ b/eclass/autotools-multilib.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.9 2013/02/10 11:44:00 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.10 2013/02/22 14:42:09 mgorny Exp $
# @ECLASS: autotools-multilib.eclass
# @MAINTAINER:
@@ -34,24 +34,24 @@ inherit autotools-utils multilib-build
EXPORT_FUNCTIONS src_configure src_compile src_test src_install
autotools-multilib_src_configure() {
- multilib_parallel_foreach_abi autotools-utils_src_configure
+ multilib_parallel_foreach_abi autotools-utils_src_configure "${@}"
}
autotools-multilib_src_compile() {
- multilib_foreach_abi autotools-utils_src_compile
+ multilib_foreach_abi autotools-utils_src_compile "${@}"
}
autotools-multilib_src_test() {
- multilib_foreach_abi autotools-utils_src_test
+ multilib_foreach_abi autotools-utils_src_test "${@}"
}
autotools-multilib_src_install() {
autotools-multilib_secure_install() {
- autotools-utils_src_install
+ autotools-utils_src_install "${@}"
# Make sure all headers are the same for each ABI.
multilib_check_headers
}
- multilib_foreach_abi autotools-multilib_secure_install
+ multilib_foreach_abi autotools-multilib_secure_install "${@}"
}