mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
gnu: sed: Skip failing test on GNU/Hurd.
* gnu/packages/base.scm (sed)[arguments]: Add #:make-flags.
This commit is contained in:
parent
2a152e1a42
commit
7797570479
1 changed files with 4 additions and 0 deletions
|
@ -172,6 +172,10 @@ (define-public sed
|
|||
" CONFIG_HEADER='$(CONFIG_HEADER)'\t\t\\\n")))))
|
||||
(modules '((guix build utils)))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:make-flags ,(if (hurd-target?)
|
||||
''("XFAIL_TESTS=test-perror2")
|
||||
''())))
|
||||
(synopsis "Stream editor")
|
||||
(native-inputs (list perl)) ;for tests
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue