summaryrefslogtreecommitdiff
path: root/gnu/packages/android.scm
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@scratchpost.org>2018-05-10 01:04:46 +0200
committerDanny Milosavljevic <dannym@scratchpost.org>2018-05-10 01:06:22 +0200
commit0d697202fcb53ac819c2fc8b103b7837e7db4c10 (patch)
tree9c70f476df9cd2c82ab45a7414aee2d4a5aea0c9 /gnu/packages/android.scm
parent3766aa921bdb4732b30e7787f2e3abc37624f291 (diff)
downloadguix-patches-0d697202fcb53ac819c2fc8b103b7837e7db4c10.tar
guix-patches-0d697202fcb53ac819c2fc8b103b7837e7db4c10.tar.gz
gnu: android-selinux: Simplify.
* gnu/packages/android.scm (android-selinux)[arguments]<#:phases>[unpack-core]: Delete. [native-inputs]: Remove "core".
Diffstat (limited to 'gnu/packages/android.scm')
-rw-r--r--gnu/packages/android.scm7
1 files changed, 0 insertions, 7 deletions
diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index 7e4f402c9c..bae5b77ffe 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -435,12 +435,6 @@ that is safe to use for user space. It also includes
"LDFLAGS=-L . -lpcre")
#:phases
(modify-phases %standard-phases
- (add-after 'unpack 'unpack-core
- (lambda* (#:key inputs #:allow-other-keys)
- (mkdir-p "core")
- (with-directory-excursion "core"
- (invoke "tar" "axf" (assoc-ref inputs "core") "--strip-components=1"))
- #t))
(add-after 'unpack-core 'patch-HOST
(lambda _
;; gettid duplicates otherwise.
@@ -451,7 +445,6 @@ that is safe to use for user space. It also includes
`(("openssl" ,openssl)))
(native-inputs
`(("android-bionic-uapi" ,android-bionic-uapi)
- ("core" ,(android-platform-system-core version))
;; pcre is inlined by our package.
("pcre" ,pcre)))
(home-page "https://developer.android.com/")