diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-03-10 09:05:32 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-03-10 09:05:32 +0000 |
commit | 67d8cf60e76006d2e11417d4cec025aacb32ba39 (patch) | |
tree | f78dff36dc649551c04caa106d1313e1340fe5db /eclass/multibuild.eclass | |
parent | bump (diff) | |
download | historical-67d8cf60e76006d2e11417d4cec025aacb32ba39.tar.gz historical-67d8cf60e76006d2e11417d4cec025aacb32ba39.tar.bz2 historical-67d8cf60e76006d2e11417d4cec025aacb32ba39.zip |
multibuild_copy_sources: fix outputting variant name.
Diffstat (limited to 'eclass/multibuild.eclass')
-rw-r--r-- | eclass/multibuild.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/multibuild.eclass b/eclass/multibuild.eclass index 87c7cc7bbca3..bc510e999863 100644 --- a/eclass/multibuild.eclass +++ b/eclass/multibuild.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/multibuild.eclass,v 1.5 2013/03/09 13:51:02 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multibuild.eclass,v 1.6 2013/03/10 09:05:32 mgorny Exp $ # @ECLASS: multibuild # @MAINTAINER: @@ -219,7 +219,7 @@ multibuild_copy_sources() { einfo "Will copy sources from ${_MULTIBUILD_INITIAL_BUILD_DIR}" _multibuild_create_source_copy() { - einfo "${impl}: copying to ${BUILD_DIR}" + einfo "${MULTIBUILD_VARIANT}: copying to ${BUILD_DIR}" cp -pr "${_MULTIBUILD_INITIAL_BUILD_DIR}" "${BUILD_DIR}" || die } |