From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mail.openembedded.org (Postfix) with ESMTP id 8119D78886 for ; Thu, 1 Mar 2018 14:06:52 +0000 (UTC) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Mar 2018 06:06:54 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.47,408,1515484800"; d="scan'208";a="35134122" Received: from kanavin-desktop.fi.intel.com ([10.237.68.161]) by orsmga001.jf.intel.com with ESMTP; 01 Mar 2018 06:06:53 -0800 From: Alexander Kanavin To: openembedded-core@lists.openembedded.org Date: Thu, 1 Mar 2018 16:00:44 +0200 Message-Id: <20180301140052.1388-7-alexander.kanavin@linux.intel.com> X-Mailer: git-send-email 2.15.1 In-Reply-To: <20180301140052.1388-1-alexander.kanavin@linux.intel.com> References: <20180301140052.1388-1-alexander.kanavin@linux.intel.com> Subject: [PATCH 07/15] gtk-doc.bbclass: inherit python3native X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2018 14:06:52 -0000 Previously the use of native python3 was non-deterministic based on what specific recipes pulled in, and could cause a failure if host python3 did not have python3-six installed. Signed-off-by: Alexander Kanavin --- meta/classes/gtk-doc.bbclass | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/meta/classes/gtk-doc.bbclass b/meta/classes/gtk-doc.bbclass index 5201c7151c6..9bc8fa2b21d 100644 --- a/meta/classes/gtk-doc.bbclass +++ b/meta/classes/gtk-doc.bbclass @@ -33,7 +33,7 @@ do_configure_prepend () { ( cd ${S}; gtkdocize --docdir ${GTKDOC_DOCDIR} || true ) } -inherit qemu +inherit qemu pkgconfig python3native export STAGING_DIR_HOST @@ -65,6 +65,3 @@ fi EOF chmod +x ${B}/gtkdoc-qemuwrapper } - - -inherit pkgconfig -- 2.15.1