build-system/gnu: Clarify docstring of `package-with-extra-configure-variable'.
* guix/build-system/gnu.scm (package-with-extra-configure-variable): Add "recursively" in the docstring.
This commit is contained in:
parent
d8707db0f7
commit
a38f0ab0b9
|
@ -78,9 +78,9 @@ when GUILE is #f."
|
||||||
(filtered-inputs (package-inputs p)))))))
|
(filtered-inputs (package-inputs p)))))))
|
||||||
|
|
||||||
(define (package-with-extra-configure-variable p variable value)
|
(define (package-with-extra-configure-variable p variable value)
|
||||||
"Return a version of P with VARIABLE=VALUE specified as an extra
|
"Return a version of P with VARIABLE=VALUE specified as an extra `configure'
|
||||||
`configure' flag. An example is LDFLAGS=-static. If P already has
|
flag, recursively. An example is LDFLAGS=-static. If P already has configure
|
||||||
configure flags for VARIABLE, the associated value is augmented."
|
flags for VARIABLE, the associated value is augmented."
|
||||||
(let loop ((p p))
|
(let loop ((p p))
|
||||||
(define (rewritten-inputs inputs)
|
(define (rewritten-inputs inputs)
|
||||||
(map (match-lambda
|
(map (match-lambda
|
||||||
|
|
Loading…
Reference in New Issue