~ruther/guix-local

df8a909660aeca43b38d96d5e57e84865793a5c4 — Danny Milosavljevic 8 years ago fccdc8c
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.
1 files changed, 3 insertions(+), 1 deletions(-)

M gnu/packages/bootloaders.scm
M gnu/packages/bootloaders.scm => gnu/packages/bootloaders.scm +3 -1
@@ 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))