diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 2ccda10e27..129b1a0e43 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -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)) - "HOST=_LINUX" - "OPT_CFLAGS=-Wall -fno-strict-aliasing") - #:tests? #f ; no 'check' target - #:phases (modify-phases %standard-phases (delete 'configure)))) + (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 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 @@ -2536,7 +2540,7 @@ (define-public acpica This package contains only the user-space tools needed for ACPI table development, not the kernel implementation of ACPI.") - (license license:gpl2))) ; dual GPLv2/ACPICA Licence + (license license:gpl2))) ;dual GPLv2/ACPICA Licence (define-public s-tui (package