mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: lsof: Fix invalid G-Expression.
Cross-compiling lsof is failing with an "invalid G-expression input" error. Fix this by using a quoted list. * gnu/packages/lsof.scm (lsof): Fix invalid G-Expression. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
b38e053513
commit
1d0e57fab8
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ (define-public lsof
|
|||
(lambda _
|
||||
(setenv "LSOF_CC" ,(cc-for-target))
|
||||
,@(if (%current-target-system)
|
||||
(list (setenv "LINUX_CONF_CC" "gcc"))
|
||||
'((setenv "LINUX_CONF_CC" "gcc"))
|
||||
'())
|
||||
(setenv "LSOF_MAKE" "make")
|
||||
|
||||
|
|
Loading…
Reference in a new issue