gnu: efivar: Use G-expressions.
* gnu/packages/linux.scm (efivar)[arguments]: Convert to G-expressions.
parent
5089e9aa06
commit
af50b52ae3
|
@ -6719,14 +6719,16 @@ under OpenGL graphics workloads.")
|
|||
"0jaka7b4lccswjqiv4liclkj6w78gildg7vd6dnw3wf595pfs67h"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(;; Tests require a UEFI system and is not detected in the chroot.
|
||||
(list
|
||||
;; Tests require a UEFI system and is not detected in the chroot.
|
||||
#:tests? #f
|
||||
#:make-flags (list (string-append "prefix=" %output)
|
||||
(string-append "libdir=" %output "/lib")
|
||||
(string-append "CC_FOR_BUILD=" ,(cc-for-target))
|
||||
(string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
|
||||
#:make-flags
|
||||
#~(list (string-append "prefix=" #$output)
|
||||
(string-append "libdir=" #$output "/lib")
|
||||
(string-append "CC_FOR_BUILD=" #$(cc-for-target))
|
||||
(string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib"))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'build-deterministically
|
||||
(lambda _
|
||||
(substitute* "src/include/defaults.mk"
|
||||
|
|
Reference in New Issue