1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-28 13:10:33 +02:00

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

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?