mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-09 12:49:45 -05:00
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:
parent
b702d1219c
commit
0fd107d86d
1 changed files with 3 additions and 2 deletions
|
@ -64,8 +64,9 @@ (define builder
|
||||||
#:phases #$phases
|
#:phases #$phases
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(cons* "-f"
|
(cons* "-f"
|
||||||
#$(file-append (car (assoc-ref inputs
|
#$(file-append (gexp-input-thing
|
||||||
"android-build"))
|
(car (assoc-ref inputs
|
||||||
|
"android-build")))
|
||||||
"/share/android/build/core/main.mk")
|
"/share/android/build/core/main.mk")
|
||||||
#$make-flags)
|
#$make-flags)
|
||||||
#:outputs #$(outputs->gexp outputs)
|
#:outputs #$(outputs->gexp outputs)
|
||||||
|
|
Loading…
Reference in a new issue