mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
build-system: copy: Support #:tests?.
* guix/build-system/copy.scm (copy-build): Pass tests? to builder.
This commit is contained in:
parent
0c444ddd4d
commit
0eab5926dd
1 changed files with 2 additions and 0 deletions
|
@ -84,6 +84,7 @@ (define* (copy-build name inputs
|
|||
(install-plan ''(("." "./")))
|
||||
(search-paths '())
|
||||
(out-of-source? #t)
|
||||
(tests? #t)
|
||||
(validate-runpath? #t)
|
||||
(patch-shebangs? #t)
|
||||
(strip-binaries? #t)
|
||||
|
@ -118,6 +119,7 @@ (define builder
|
|||
(sexp->gexp phases)
|
||||
phases)
|
||||
#:out-of-source? #$out-of-source?
|
||||
#:tests? #$tests?
|
||||
#:validate-runpath? #$validate-runpath?
|
||||
#:patch-shebangs? #$patch-shebangs?
|
||||
#:strip-binaries? #$strip-binaries?
|
||||
|
|
Loading…
Reference in a new issue