From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from radex-web.radex.nl (smtp.radex.nl [178.250.146.7]) by mail.openembedded.org (Postfix) with ESMTP id 6D3537BDFE for ; Mon, 7 Jan 2019 11:09:28 +0000 (UTC) Received: from [192.168.1.22] (cust-178-250-146-69.breedbanddelft.nl [178.250.146.69]) by radex-web.radex.nl (Postfix) with ESMTPS id 23DFC2404C; Mon, 7 Jan 2019 12:09:29 +0100 (CET) From: Ferry Toth To: openembedded-core@lists.openembedded.org X-Mozilla-News-Host: news://news://news://news://news.gmane.org:119 Message-ID: Date: Mon, 7 Jan 2019 12:09:29 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1 MIME-Version: 1.0 Subject: [PATCH] libgpiod_1.2: add a dependency on python when building python bindings 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: Mon, 07 Jan 2019 11:09:28 -0000 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US Commit ab54dd75 "libgpiod: Rrecommend python3 only for PN-python package" also removes the build dependency on python3 however this results in fatal error: Python.h: No such file or directory #include Signed-off-by: Ferry Toth --- meta-oe/recipes-support/libgpiod/libgpiod_1.2.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-support/libgpiod/libgpiod_1.2.bb b/meta-oe/recipes-support/libgpiod/libgpiod_1.2.bb index dd080ff9d..93165a0c2 100644 --- a/meta-oe/recipes-support/libgpiod/libgpiod_1.2.bb +++ b/meta-oe/recipes-support/libgpiod/libgpiod_1.2.bb @@ -7,7 +7,7 @@ SRC_URI[sha256sum] = "b6b9079c933f7c8524815437937dda6b795a16141bca202a9eec70ba58 PACKAGECONFIG[cxx] = "--enable-bindings-cxx,--disable-bindings-cxx" -PACKAGECONFIG[python3] = "--enable-bindings-python,--disable-bindings-python," +PACKAGECONFIG[python3] = "--enable-bindings-python,--disable-bindings-python,python3" inherit ${@bb.utils.contains('PACKAGECONFIG', 'python3', 'python3native', '', d)} PACKAGES =+ "${PN}-python" -- 2.19.1