mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: acpica: Use G-expressions.
* gnu/packages/admin.scm (acpica)[arguments]: Rewrite as G-expressions. Change-Id: I54fa79ac8008f7d8d41f9ebd757afcf7f5f1faf1
This commit is contained in:
parent
a2c462358e
commit
9a074d9f44
1 changed files with 11 additions and 7 deletions
|
@ -2518,12 +2518,16 @@ (define-public acpica
|
|||
(build-system gnu-build-system)
|
||||
(native-inputs (list flex bison))
|
||||
(arguments
|
||||
`(#:make-flags (list (string-append "PREFIX=" %output)
|
||||
(string-append "CC=" ,(cc-for-target))
|
||||
(list
|
||||
#:make-flags
|
||||
#~(list (string-append "PREFIX=" #$output)
|
||||
(string-append "CC=" #$(cc-for-target))
|
||||
"HOST=_LINUX"
|
||||
"OPT_CFLAGS=-Wall -fno-strict-aliasing")
|
||||
#:tests? #f ; no 'check' target
|
||||
#:phases (modify-phases %standard-phases (delete 'configure))))
|
||||
#:tests? #f ;no test suite
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure)))) ;no configure script
|
||||
(home-page "https://acpica.org/")
|
||||
(synopsis "Tools for the development and debugging of ACPI tables")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue