mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-20 05:37:34 -05:00
gnu: gmnisrv: Disable tests using #:tests?.
gnu/packages/web.scm (gmnisrv)[arguments]<#:phases>: Undelete check phase, and... <#:tests?>: ...disable tests here instead. Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
This commit is contained in:
parent
3314764193
commit
274fcfb251
1 changed files with 3 additions and 3 deletions
|
@ -7983,13 +7983,13 @@ (define-public gmnisrv
|
|||
(file-name (git-file-name name version))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
`(#:tests? #f ; no check target
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'configure 'set-variables
|
||||
(lambda _
|
||||
(setenv "CC" "gcc")
|
||||
#t))
|
||||
(delete 'check))))
|
||||
#t)))))
|
||||
(inputs
|
||||
`(("openssl" ,openssl)))
|
||||
(native-inputs
|
||||
|
|
Loading…
Reference in a new issue