From mboxrd@z Thu Jan 1 00:00:00 1970 X-GM-THRID: 6496794200421433344 X-Received: by 10.28.22.84 with SMTP id 81mr115674wmw.18.1512652775585; Thu, 07 Dec 2017 05:19:35 -0800 (PST) X-BeenThere: isar-users@googlegroups.com Received: by 10.28.125.198 with SMTP id y189ls3289327wmc.8.canary-gmail; Thu, 07 Dec 2017 05:19:35 -0800 (PST) X-Google-Smtp-Source: AGs4zMZEEKvYHazNdIXjIJLR+fluUML5H8SX1UG770Mb0AU6c52MbgIMu2WYlTeEd4lu6+XPR6PY X-Received: by 10.223.173.210 with SMTP id w76mr2784224wrc.6.1512652775177; Thu, 07 Dec 2017 05:19:35 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1512652775; cv=none; d=google.com; s=arc-20160816; b=z6aZ82Y8CmA/SoooZ6OVNebpciSAk/yW3X1TjBOh17j5mpzYlwtuSF6PolzoA+2LzE /lTL1Jb9nWKVSM/XS7WuG6FaNryIQ2r6HUsuMR3R2kExthNvWDmaeuCa3GlrpnlGXDkg kWJyPXdc4f9D9Zb6TbGiUf9z0kA0R1+Wb+Sx3Lad7TkYigFcDQ4c8luznD7vcuwVL57Q i0+HLdUOCYrYcZH6MQibWOlsbiZA6DCWOD0+0hWtyo/ZSy8pcrArdiRp/ZNfYQI1bjRI FWX0VOJTyi6fdcJ89BqJ9i70Vm2MifgncSRGwYLnLeyQvMaGWvBV6TDASDlg3ddbj2eG JXVQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=message-id:date:subject:cc:to:from:arc-authentication-results; bh=C1++Fln/QxDZ7TA8fabk+S7sLL3Ex7hyg6RwLZUlL1w=; b=TrmicRtPmtz6EUvzYhLer0CPe5uLR9lx4qZhxFQVOsiyPBIDYlF5aKYtwjoLDwedR5 844AefOROIVK0U0b46YYhWKa8QapEvwv/LpUrRO7/YHGSdKOUsyvl1oDWnWgqRzC2trM cymAqNsdG1u8hGG5XhoO7OY8TniJdFY+PGs+q02Lu39bQRA8YU7GrlDDopjN/D9vpP/u PiokU5qPrvXzx8uDpgyiEv3Bv/p6a2DxZ8WM6uwf+G5xIVIR2cboLZbKLxzOBnHR+POs dWogenHInmVezZ0w/hp0ZuQ7VRTKHhgSuKRMVfefoOmvwMqEVLnzwshWxXOI3XoTQDkw pWFQ== ARC-Authentication-Results: i=1; gmr-mx.google.com; spf=pass (google.com: domain of christian.storm@siemens.com designates 192.35.17.14 as permitted sender) smtp.mailfrom=christian.storm@siemens.com Return-Path: Received: from david.siemens.de (david.siemens.de. [192.35.17.14]) by gmr-mx.google.com with ESMTPS id j81si44586wmd.1.2017.12.07.05.19.35 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 07 Dec 2017 05:19:35 -0800 (PST) Received-SPF: pass (google.com: domain of christian.storm@siemens.com designates 192.35.17.14 as permitted sender) client-ip=192.35.17.14; Authentication-Results: gmr-mx.google.com; spf=pass (google.com: domain of christian.storm@siemens.com designates 192.35.17.14 as permitted sender) smtp.mailfrom=christian.storm@siemens.com Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by david.siemens.de (8.15.2/8.15.2) with ESMTPS id vB7DJYef019064 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Thu, 7 Dec 2017 14:19:34 +0100 Received: from MD1KR9XC.ww002.siemens.net ([139.25.69.251]) by mail1.siemens.de (8.15.2/8.15.2) with ESMTP id vB7DJYBS011566; Thu, 7 Dec 2017 14:19:34 +0100 From: Christian Storm To: isar-users@googlegroups.com Cc: Christian Storm Subject: [PATCH] buildchroot: soft-assign default IMAGE_INSTALL Date: Thu, 7 Dec 2017 14:17:48 +0100 Message-Id: <20171207131748.29963-1-christian.storm@siemens.com> X-Mailer: git-send-email 2.15.1 X-TUID: 0omLJENb7Z3x Commit 383ef25 "buildchroot: Add prepare and cleanup tasks" introduced a hard dependency on IMAGE_INSTALL being set. If unset, bitbake fails. Hence, make a soft-assigned default IMAGE_INSTALL="" in case IMAGE_INSTALL isn't set. Signed-off-by: Christian Storm --- meta/recipes-devtools/buildchroot/buildchroot.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-devtools/buildchroot/buildchroot.bb b/meta/recipes-devtools/buildchroot/buildchroot.bb index 9b9f5f6..99d5295 100644 --- a/meta/recipes-devtools/buildchroot/buildchroot.bb +++ b/meta/recipes-devtools/buildchroot/buildchroot.bb @@ -93,6 +93,7 @@ do_prepare() { addtask prepare after do_build +IMAGE_INSTALL ??= "" DEPENDS += "${IMAGE_INSTALL}" do_cleanup[deptask] = "do_deploy_deb" do_cleanup[nostamp] = "1" -- 2.15.1