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 @@
|
||||||
(install-plan ''(("." "./")))
|
(install-plan ''(("." "./")))
|
||||||
(search-paths '())
|
(search-paths '())
|
||||||
(out-of-source? #t)
|
(out-of-source? #t)
|
||||||
|
(tests? #t)
|
||||||
(validate-runpath? #t)
|
(validate-runpath? #t)
|
||||||
(patch-shebangs? #t)
|
(patch-shebangs? #t)
|
||||||
(strip-binaries? #t)
|
(strip-binaries? #t)
|
||||||
|
@ -118,6 +119,7 @@
|
||||||
(sexp->gexp phases)
|
(sexp->gexp phases)
|
||||||
phases)
|
phases)
|
||||||
#:out-of-source? #$out-of-source?
|
#:out-of-source? #$out-of-source?
|
||||||
|
#:tests? #$tests?
|
||||||
#:validate-runpath? #$validate-runpath?
|
#:validate-runpath? #$validate-runpath?
|
||||||
#:patch-shebangs? #$patch-shebangs?
|
#:patch-shebangs? #$patch-shebangs?
|
||||||
#:strip-binaries? #$strip-binaries?
|
#:strip-binaries? #$strip-binaries?
|
||||||
|
|
Reference in a new issue