build-system/android-ndk: Fix reference to "android-build".

Regression introduced in 7d873f194c.

* guix/build-system/android-ndk.scm (android-ndk-build): Call
'gexp-input-thing' on the item taken from INPUTS.
This commit is contained in:
Ludovic Courtès 2021-04-01 21:57:42 +02:00
parent b702d1219c
commit 0fd107d86d
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -64,8 +64,9 @@ (define builder
#:phases #$phases
#:make-flags
(cons* "-f"
#$(file-append (car (assoc-ref inputs
"android-build"))
#$(file-append (gexp-input-thing
(car (assoc-ref inputs
"android-build")))
"/share/android/build/core/main.mk")
#$make-flags)
#:outputs #$(outputs->gexp outputs)