From 3766aa921bdb4732b30e7787f2e3abc37624f291 Mon Sep 17 00:00:00 2001
From: Danny Milosavljevic <dannym@scratchpost.org>
Date: Thu, 10 May 2018 01:03:54 +0200
Subject: [PATCH] build-system: android-ndk: Let upstream install header files.

* guix/build/android-ndk-build-system.scm (install): Don't install header
files ourselves.
---
 guix/build/android-ndk-build-system.scm | 2 --
 1 file changed, 2 deletions(-)

diff --git a/guix/build/android-ndk-build-system.scm b/guix/build/android-ndk-build-system.scm
index 86d0858488b..3c8f726d1dc 100644
--- a/guix/build/android-ndk-build-system.scm
+++ b/guix/build/android-ndk-build-system.scm
@@ -64,8 +64,6 @@ (define* (install #:key inputs outputs (make-flags '()) #:allow-other-keys)
     (apply invoke "make" "install"
            (string-append "prefix=" out)
            make-flags)
-    (if (file-exists? "include")
-        (copy-recursively "include" (string-append out "/include")))
     #t))
 
 (define* (check #:key target inputs outputs (tests? (not target)) (make-flags '()) #:allow-other-keys)
-- 
GitLab