diff options
author | 2014-04-21 07:58:10 +0000 | |
---|---|---|
committer | 2014-04-21 07:58:10 +0000 | |
commit | adb774f96df20c62917c0d8a8533718c351f774b (patch) | |
tree | 513fa0f9026bb05cc8cafb18d9823150b48de1f6 /eclass | |
parent | Use the new multilib_native_use* functions. (diff) | |
download | historical-adb774f96df20c62917c0d8a8533718c351f774b.tar.gz historical-adb774f96df20c62917c0d8a8533718c351f774b.tar.bz2 historical-adb774f96df20c62917c0d8a8533718c351f774b.zip |
Add a QA warning to multilib_is_native_abi.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/multilib-build.eclass | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 3a68d622bf01..70e117962717 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1217 2014/04/21 07:27:53 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1218 2014/04/21 07:58:10 mgorny Exp $ + + 21 Apr 2014; Michał Górny <mgorny@gentoo.org> multilib-build.eclass: + Add a QA warning to multilib_is_native_abi. 21 Apr 2014; Michał Górny <mgorny@gentoo.org> multilib-build.eclass: ...and make multilib_build_binaries stand-alone. diff --git a/eclass/multilib-build.eclass b/eclass/multilib-build.eclass index e6d990040470..ee8be72eacc6 100644 --- a/eclass/multilib-build.eclass +++ b/eclass/multilib-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.37 2014/04/21 07:27:53 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.38 2014/04/21 07:58:10 mgorny Exp $ # @ECLASS: multilib-build.eclass # @MAINTAINER: @@ -439,6 +439,9 @@ multilib_install_wrappers() { multilib_is_native_abi() { debug-print-function ${FUNCNAME} "${@}" + eqawarn "QA warning: multilib_is_native_abi() is deprecated," + eqawarn "please use multilib_build_binaries instead." + multilib_build_binaries "${@}" } |