commit: 8e429344bfec35c557338fb8a5b0adee88006ad5
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 1 10:50:38 2016 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Feb 3 09:53:01 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e429344
wxwidgets.eclass: Only inherit eclass once
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
eclass/wxwidgets.eclass | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/eclass/wxwidgets.eclass b/eclass/wxwidgets.eclass
index 5c0719d..aaac074 100644
--- a/eclass/wxwidgets.eclass
+++ b/eclass/wxwidgets.eclass
@@ -58,6 +58,8 @@
# Use the -DNDEBUG preprocessor flag to disable debugging features.
# (Using need-wxwidgets will do this for you, see below.)
+if [[ -z ${_WXWIDGETS_ECLASS} ]]; then
+
inherit eutils flag-o-matic multilib
# We do this in global scope so ebuilds can get sane defaults just by
@@ -163,3 +165,6 @@ need-wxwidgets() {
einfo "Using wxWidgets: ${wxconf}"
echo
}
+
+_WXWIDGETS_ECLASS=1
+fi