build-system: copy: Support #:tests?.

* guix/build-system/copy.scm (copy-build): Pass tests? to builder.
This commit is contained in:
Liliana Marie Prikler 2022-08-13 11:26:34 +02:00
parent 0c444ddd4d
commit 0eab5926dd
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87

View File

@ -84,6 +84,7 @@
(install-plan ''(("." "./")))
(search-paths '())
(out-of-source? #t)
(tests? #t)
(validate-runpath? #t)
(patch-shebangs? #t)
(strip-binaries? #t)
@ -118,6 +119,7 @@
(sexp->gexp phases)
phases)
#:out-of-source? #$out-of-source?
#:tests? #$tests?
#:validate-runpath? #$validate-runpath?
#:patch-shebangs? #$patch-shebangs?
#:strip-binaries? #$strip-binaries?