mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 16:38:09 +01:00
nongnu: linux-firmware: Use make-flags to set install dir.
* nongnu/packages/linux.scm (linux-firmware)[arguments]: Use #:make-flags to specify DESTDIR. Remove custom 'install phase. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
parent
4028f64b58
commit
9bb89eff12
1 changed files with 1 additions and 5 deletions
|
@ -104,13 +104,9 @@ System on hardware which requires nonfree software to function.")))
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f
|
||||
#:make-flags (list (string-append "DESTDIR=" (assoc-ref %outputs "out")))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(invoke "make" "install"
|
||||
(string-append "DESTDIR=" out)))))
|
||||
(delete 'validate-runpath))))
|
||||
(home-page
|
||||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git")
|
||||
|
|
Loading…
Reference in a new issue