summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2014-04-21 07:58:10 +0000
committerMichał Górny <mgorny@gentoo.org>2014-04-21 07:58:10 +0000
commit66e3f11711166acd6ecbdec2a56155d8b4f6390f (patch)
treec017b1d1ce43d73611939dc28d8d87db7dd174ee /eclass
parentUse the new multilib_native_use* functions. (diff)
downloadgentoo-2-66e3f11711166acd6ecbdec2a56155d8b4f6390f.tar.gz
gentoo-2-66e3f11711166acd6ecbdec2a56155d8b4f6390f.tar.bz2
gentoo-2-66e3f11711166acd6ecbdec2a56155d8b4f6390f.zip
Add a QA warning to multilib_is_native_abi.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/multilib-build.eclass5
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 "${@}"
}