From patchwork Fri Aug 21 15:12:30 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kiszka X-Patchwork-Id: 11729725 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id A1C201575 for ; Fri, 21 Aug 2020 15:12:37 +0000 (UTC) Received: from web01.groups.io (web01.groups.io [66.175.222.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 785F2207DF for ; Fri, 21 Aug 2020 15:12:37 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=lists.cip-project.org header.i=@lists.cip-project.org header.b="eb4mYOhh" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 785F2207DF Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=siemens.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+64572+5224+4520428+8129116@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id LLi9YY4521763xc3s7xg8trA; Fri, 21 Aug 2020 08:12:37 -0700 X-Received: from thoth.sbs.de (thoth.sbs.de [192.35.17.2]) by mx.groups.io with SMTP id smtpd.web11.135909.1598022753366043494 for ; Fri, 21 Aug 2020 08:12:34 -0700 X-Received: from mail2.sbs.de (mail2.sbs.de [192.129.41.66]) by thoth.sbs.de (8.15.2/8.15.2) with ESMTPS id 07LFCUvU002186 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Fri, 21 Aug 2020 17:12:31 +0200 X-Received: from [139.22.122.86] ([139.22.122.86]) by mail2.sbs.de (8.15.2/8.15.2) with ESMTP id 07LFCUTr022411; Fri, 21 Aug 2020 17:12:30 +0200 From: "Jan Kiszka" Subject: [cip-dev] [PATCH][isar-cip-core] swupdate: Add missing build dependency To: cip-dev , Quirin Gylstorff Message-ID: <86cc968b-1dbb-ac71-fd80-d29397ce4073@siemens.com> Date: Fri, 21 Aug 2020 17:12:30 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: cip-dev@lists.cip-project.org List-Id: Mailing-List: list cip-dev@lists.cip-project.org; contact cip-dev+owner@lists.cip-project.org Delivered-To: mailing list cip-dev@lists.cip-project.org Reply-To: cip-dev@lists.cip-project.org X-Gm-Message-State: WKRWPxazCwVuZJVddaV3ZUs8x4520428AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1598022757; bh=KIpX9Rr3juQESl9tPrBhYOs2UdNGTsdhtHB8Gql2puI=; h=Content-Type:Date:From:Reply-To:Subject:To; b=eb4mYOhhhHMEz7T3BKREWl7zErvNY0CalU/rfZZAheHjP1skPHD05/+sLiX2K253rQm k1Cre65yVdO5OM6cwovH74yZG5uWlr2C5l13iAeWPaPIykIj3ujKhxZwU5qLK6+gELFc5 pXQJfn1EQgF5eC1KgcrWyZMHGjVqavGr94E= From: Jan Kiszka Signed-off-by: Jan Kiszka --- Quirin, please check if this is actually an unconditional dep! classes/swupdate-config.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/swupdate-config.bbclass b/classes/swupdate-config.bbclass index 7ce51c5..42f0654 100644 --- a/classes/swupdate-config.bbclass +++ b/classes/swupdate-config.bbclass @@ -15,7 +15,7 @@ inherit kconfig-snippets BUILD_DEB_DEPENDS = " \ zlib1g-dev, debhelper, libconfig-dev, libarchive-dev, \ - python-sphinx:native, dh-systemd, libsystemd-dev" + python-sphinx:native, dh-systemd, libsystemd-dev, libssl-dev" KFEATURE_lua = "" KFEATURE_lua[BUILD_DEB_DEPENDS] = "liblua5.3-dev"