1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: freeipmi: Use G-expressions.

* gnu/packages/freeipmi.scm (freeipmi)[arguments]: Use G-expressions.

Change-Id: I998d7ca5073031c2a9807c5967b8c20984139bf6
This commit is contained in:
Zheng Junjie
2024-09-09 18:06:54 +08:00
parent 1864659189
commit 1abf7fdcb0

View File

@@ -55,13 +55,13 @@
(string-append "/bin/" file)) "config"))
'("config.guess" "config.sub"))))))
'())
`(#:configure-flags '("--disable-static"
,@(if (%current-target-system)
;; We cannot check for these devices
;; when cross compiling.
`("ac_cv_file__dev_random=yes"
"ac_cv_file__dev_urandom=yes")
'())))))
(list #:configure-flags #~'("--disable-static"
#$@(if (%current-target-system)
;; We cannot check for these devices
;; when cross compiling.
`("ac_cv_file__dev_random=yes"
"ac_cv_file__dev_urandom=yes")
'())))))
(native-inputs
(if (and (%current-target-system)
(target-riscv64?))