mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: inetutils: Disable parallel tests.
* gnu/packages/admin.scm (inetutils)[arguments]: Add #:parallel-tests? #f.
This commit is contained in:
parent
ce79279d34
commit
ed6a21b45f
1 changed files with 4 additions and 1 deletions
|
@ -254,7 +254,10 @@ (define-public inetutils
|
|||
"05n65k4ixl85dc6rxc51b1b732gnmm8xnqi424dy9f1nz7ppb3xy"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:configure-flags '("--localstatedir=/var")))
|
||||
'(#:configure-flags '("--localstatedir=/var")
|
||||
;; On some systems, 'libls.sh' may fail with an error such as:
|
||||
;; "Failed to tell switch -a apart from -A".
|
||||
#:parallel-tests? #f))
|
||||
(inputs `(("ncurses" ,ncurses)
|
||||
("readline" ,readline))) ;for 'ftp'
|
||||
(native-inputs `(("netstat" ,net-tools))) ;for tests
|
||||
|
|
Loading…
Reference in a new issue