mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: psmisc: Fix cross-compilation.
* gnu/packages/linux.scm (psmisc)[arguments]: Pass ac_cv_func_malloc_0_nonnull=yes and ac_cv_func_realloc_0_nonnull=yes options that are required when cross-compiling.
This commit is contained in:
parent
88ca4029a6
commit
46429444d6
1 changed files with 7 additions and 0 deletions
|
@ -1078,6 +1078,13 @@ (define-public psmisc
|
|||
(sha256
|
||||
(base32 "16i7qzjmm6g0lzha8yzpfrlcxnvkgh95hkq9gdjd4zmzb8d0wxa1"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(,@(if (%current-target-system)
|
||||
'(#:configure-flags
|
||||
(list
|
||||
"ac_cv_func_malloc_0_nonnull=yes"
|
||||
"ac_cv_func_realloc_0_nonnull=yes"))
|
||||
'())))
|
||||
(inputs `(("ncurses" ,ncurses)))
|
||||
(home-page "https://gitlab.com/psmisc/psmisc")
|
||||
(synopsis "Small utilities that use the proc file system")
|
||||
|
|
Loading…
Reference in a new issue