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>master
parent
b38e053513
commit
1d0e57fab8
|
@ -55,7 +55,7 @@
|
||||||
(lambda _
|
(lambda _
|
||||||
(setenv "LSOF_CC" ,(cc-for-target))
|
(setenv "LSOF_CC" ,(cc-for-target))
|
||||||
,@(if (%current-target-system)
|
,@(if (%current-target-system)
|
||||||
(list (setenv "LINUX_CONF_CC" "gcc"))
|
'((setenv "LINUX_CONF_CC" "gcc"))
|
||||||
'())
|
'())
|
||||||
(setenv "LSOF_MAKE" "make")
|
(setenv "LSOF_MAKE" "make")
|
||||||
|
|
||||||
|
|
Reference in New Issue