diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-08-13 11:26:34 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-08-28 21:25:30 +0200 |
commit | 0eab5926dd95ae67b0db7b68a2fb4ef3048db824 (patch) | |
tree | de7cc6a644f6a60818e7966683d76a14f4b582cb /guix | |
parent | 0c444ddd4d30568f49307185d3e08e7e961b4dda (diff) |
build-system: copy: Support #:tests?.
* guix/build-system/copy.scm (copy-build): Pass tests? to builder.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/build-system/copy.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/build-system/copy.scm b/guix/build-system/copy.scm index 4894ba46fb..0df397cf77 100644 --- a/guix/build-system/copy.scm +++ b/guix/build-system/copy.scm @@ -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? |