mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: make-u-boot-package: Return #t from "install" phase.
* gnu/packages/bootloaders.scm (make-u-boot-package)[arguments]<#:phases> [install]: Return #t.
This commit is contained in:
parent
1a80f1a9e3
commit
d1af9a8c22
1 changed files with 2 additions and 1 deletions
|
@ -519,7 +519,8 @@ (define-public (make-u-boot-package board triplet)
|
|||
(let ((target-file (string-append libexec "/" file)))
|
||||
(mkdir-p (dirname target-file))
|
||||
(copy-file file target-file)))
|
||||
uboot-files))))))))))
|
||||
uboot-files)
|
||||
#t)))))))))
|
||||
|
||||
(define-public u-boot-vexpress
|
||||
(make-u-boot-package "vexpress_ca9x4" "arm-linux-gnueabihf"))
|
||||
|
|
Loading…
Reference in a new issue