gnu: efilinux: Set ARCH variable on some architectures.
Even with this patch efilinux does not build for arm*. * gnu/packages/efi.scm (efilinux)[arguments]: On armhf-linux and aarch64-linux set the ARCH variable apropriately.
This commit is contained in:
parent
385d7546e1
commit
b856a78c94
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2019 Danny Milosavljevic <dannym@scratchpost.org>
|
;;; Copyright © 2019 Danny Milosavljevic <dannym@scratchpost.org>
|
||||||
|
;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -29,7 +30,8 @@
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix utils))
|
#:use-module (guix utils)
|
||||||
|
#:use-module (ice-9 match))
|
||||||
|
|
||||||
(define-public gnu-efi
|
(define-public gnu-efi
|
||||||
(package
|
(package
|
||||||
|
@ -195,6 +197,12 @@ and EFI variable management.")
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags
|
`(#:make-flags
|
||||||
(list "CC=gcc"
|
(list "CC=gcc"
|
||||||
|
,@(match (%current-system)
|
||||||
|
("aarch64-linux"
|
||||||
|
'("ARCH=aarch64"))
|
||||||
|
("armhf-linux"
|
||||||
|
'("ARCH=arm"))
|
||||||
|
(_ '()))
|
||||||
(string-append "INCDIR=" (assoc-ref %build-inputs "gnu-efi")
|
(string-append "INCDIR=" (assoc-ref %build-inputs "gnu-efi")
|
||||||
"/include")
|
"/include")
|
||||||
(string-append "LIBDIR=" (assoc-ref %build-inputs "gnu-efi")
|
(string-append "LIBDIR=" (assoc-ref %build-inputs "gnu-efi")
|
||||||
|
|
Loading…
Reference in New Issue