mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-27 19:35:10 -06:00
system: make-u-boot-package: Replace underscores by dashes in package name.
* gnu/packages/bootloaders.scm (make-u-boot-package): Replace underscores by dashes in package name.
This commit is contained in:
parent
fccdc8c839
commit
df8a909660
1 changed files with 3 additions and 1 deletions
|
|
@ -365,7 +365,9 @@ also initializes the boards (RAM etc).")
|
|||
`#f)))
|
||||
(package
|
||||
(inherit u-boot)
|
||||
(name (string-append "u-boot-" (string-downcase board)))
|
||||
(name (string-append "u-boot-"
|
||||
(string-replace-substring (string-downcase board)
|
||||
"_" "-")))
|
||||
(native-inputs
|
||||
`(,@(if (not same-arch?)
|
||||
`(("cross-gcc" ,(cross-gcc triplet #:xgcc gcc-7))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue