mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: fastboot: Fix ‘--version’ output.
* gnu/packages/android.scm (fastboot)[arguments]: Replace broken ‘git rev-parse’ shell command with the actual package VERSION. Reported by kwjc on #guix.
This commit is contained in:
parent
5573d98f81
commit
852ad65bd4
1 changed files with 2 additions and 1 deletions
|
@ -668,7 +668,8 @@ (define-public fastboot
|
|||
(add-after 'enter-source 'patch-source
|
||||
(lambda _
|
||||
(substitute* "Android.mk"
|
||||
(("libext4_utils_host") "libext4_utils_host libselinux libpcre"))
|
||||
(("libext4_utils_host") "libext4_utils_host libselinux libpcre")
|
||||
(("\\$\\(shell git .*\\)") ,version))
|
||||
#t))
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
|
|
Loading…
Reference in a new issue