From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52731) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fBUav-0002nf-Ds for guix-patches@gnu.org; Wed, 25 Apr 2018 20:17:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fBUau-0002FN-8x for guix-patches@gnu.org; Wed, 25 Apr 2018 20:17:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60062) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fBUat-0002F5-Ud for guix-patches@gnu.org; Wed, 25 Apr 2018 20:17:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fBUat-0006FQ-PB for guix-patches@gnu.org; Wed, 25 Apr 2018 20:17:03 -0400 Subject: [bug#31265] [PATCH 6/6] gnu: mkbootimg: Install "bootimg.h". Resent-Message-ID: From: Danny Milosavljevic Date: Thu, 26 Apr 2018 02:16:00 +0200 Message-Id: <20180426001600.28974-6-dannym@scratchpost.org> In-Reply-To: <20180426001600.28974-1-dannym@scratchpost.org> References: <20180426001319.28848-1-dannym@scratchpost.org> <20180426001600.28974-1-dannym@scratchpost.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31265@debbugs.gnu.org * gnu/packages/android.scm (mkbootimg)[arguments]<#:phases>[install]: Install "bootimg.h". --- gnu/packages/android.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm index 085bf41ae..53b0183f9 100644 --- a/gnu/packages/android.scm +++ b/gnu/packages/android.scm @@ -256,8 +256,10 @@ to a Unix shell that can run commands on the connected device or emulator.") (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) - (bin (string-append out "/bin"))) + (bin (string-append out "/bin")) + (include (string-append out "/include"))) (install-file "mkbootimg" bin) + (install-file "bootimg.h" include) #t)))))) (home-page "https://developer.android.com/studio/command-line/adb.html") (synopsis "Tool to create Android boot images")