From mboxrd@z Thu Jan 1 00:00:00 1970 X-GM-THRID: 6514905122349252608 X-Received: by 10.80.141.204 with SMTP id s12mr6469320edh.10.1516869552676; Thu, 25 Jan 2018 00:39:12 -0800 (PST) X-BeenThere: isar-users@googlegroups.com Received: by 10.80.171.6 with SMTP id s6ls303953edc.2.gmail; Thu, 25 Jan 2018 00:39:12 -0800 (PST) X-Google-Smtp-Source: AH8x227+ib7SWRrRvc8HNhWiImiHtmtRcXV7vpwFvNK4plHgQZi3EUCECjoZtQm4x6N+hr1DyxQc X-Received: by 10.80.146.139 with SMTP id k11mr6453907eda.4.1516869552052; Thu, 25 Jan 2018 00:39:12 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1516869552; cv=none; d=google.com; s=arc-20160816; b=azvZjQiWiEYN+2lWnSgzPM7xYYGIRNrdD7NhmKkz6DYEFeuafkUL2+XTlusBYR+vpa GNYK4YGMd/wByPiHPPo35cA4uJvD4eLhp2qtTe/Skc+n4ZfoHjwr8xQ43+HCtfldqoff FZqjw1iA2DJOVCwEueFs+WlqWs/GrLsgW7ig1n8lP+Nn4no/598ddGRzdYT0VdkmlSmt D9MjJQ6uE2LTlX2575GoRo188gjFUJ3+8cNoN0duiRkunmV1D2YJG2GqSmRU+Sj6MAgM NHkl5h9wAibmiB4m39fRusgLSrwHInWVCnlSgfrlVtAweM8SFhEjJR8+NhEQPOwXkUWj Lsdw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=references:in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=MdK27R2zV8QRbBXFAJQBY//QDDMgy9quJFKHNJUON30=; b=0n9ujJedeIYUTgxKI6YqnIwZZFsNTfGQCjvDmittA0W9wI7DlnHeC+42zGbSPUx5Lc WiJdHMaZBeCwk8OikSulq+qVjcuDw8v2bS/vw6FQLbQlljVZW+YTzGmsVXCtjuY16OrX 4PQ1iROnF2a2j46CAffpIZSsqDf26l6TYc3HKvUqiastKwQ4CQzmzSx4AJHFGS62PbWC 1EQmEydbFR7Mpz15GXaUYHz53UQl81duiGWhqLjdNpkqWbHN3QmrIoQhzLM9iPePdwPV v5iCeSX13QQSC9VDdifbnoMAL5Ur0cV8FF355dz2JAWPqiJ3FDds+kHhWbRVfpA2piiL lwoA== ARC-Authentication-Results: i=1; gmr-mx.google.com; spf=pass (google.com: best guess record for domain of asmirnov@ilbers.de designates 85.214.62.211 as permitted sender) smtp.mailfrom=asmirnov@ilbers.de Return-Path: Received: from aqmola.ilbers.de (aqmola.ilbers.de. [85.214.62.211]) by gmr-mx.google.com with ESMTPS id t4si281101edt.2.2018.01.25.00.39.11 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 25 Jan 2018 00:39:11 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of asmirnov@ilbers.de designates 85.214.62.211 as permitted sender) client-ip=85.214.62.211; Authentication-Results: gmr-mx.google.com; spf=pass (google.com: best guess record for domain of asmirnov@ilbers.de designates 85.214.62.211 as permitted sender) smtp.mailfrom=asmirnov@ilbers.de Received: from localhost.localdomain ([188.227.110.165]) (authenticated bits=0) by aqmola.ilbers.de (8.14.4/8.14.4/Debian-4+deb7u1) with ESMTP id w0P8cvaA019746 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 25 Jan 2018 09:39:04 +0100 From: Alexander Smirnov To: isar-users@googlegroups.com Cc: Alexander Smirnov Subject: [PATCH 2/3] build.sh: Install newly built packages Date: Thu, 25 Jan 2018 11:38:50 +0300 Message-Id: <20180125083851.5887-3-asmirnov@ilbers.de> X-Mailer: git-send-email 2.9.5 In-Reply-To: <20180125083851.5887-1-asmirnov@ilbers.de> References: <20180125083851.5887-1-asmirnov@ilbers.de> X-TUID: Mkmj+1X7YM4L Install the debs to buildchroot immediately. This should go when Isar apt will be integrated to buildchroot, so the next packages will be able to populate build dependencies via 'apt-get install'. Signed-off-by: Alexander Smirnov --- meta/recipes-devtools/buildchroot/files/build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-devtools/buildchroot/files/build.sh b/meta/recipes-devtools/buildchroot/files/build.sh index 975252e..a04f3b6 100644 --- a/meta/recipes-devtools/buildchroot/files/build.sh +++ b/meta/recipes-devtools/buildchroot/files/build.sh @@ -19,3 +19,6 @@ done # Build the package LC_ALL=C LANG=C dpkg-buildpackage + +# Install newly built packages +dpkg -i ../*.deb -- 2.1.4