Skip to content
Snippets Groups Projects
Commit ffd20934 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

gnu: make-bootstrap: Skip tests for the statically-linked gawk.

* gnu/packages/make-bootstrap.scm (%static-inputs)[gawk]: Add #:tests? #f.
parent 614bdaff
No related branches found
No related tags found
No related merge requests found
......@@ -153,6 +153,13 @@ (define %static-inputs
(gawk (package (inherit gawk)
(arguments
`(#:patches (list (assoc-ref %build-inputs "patch/sh"))
;; Starting from gawk 4.1.0, some of the tests for the
;; plug-in mechanism just fail on static builds:
;;
;; ./fts.awk:1: error: can't open shared library `filefuncs' for reading (No such file or directory)
#:tests? #f
,@(substitute-keyword-arguments (package-arguments gawk)
((#:phases phases)
`(alist-cons-before
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment