build-system/gnu: Fix typo in `gnu-cross-build'.
* guix/build-system/gnu.scm (gnu-cross-build)[builder]: When IMPLICIT-TARGET-INPUTS is #f, default to '().
This commit is contained in:
parent
58b4e8e877
commit
ea84ec7711
|
@ -395,7 +395,7 @@ platform."
|
||||||
drv-path sub)))
|
drv-path sub)))
|
||||||
((name path)
|
((name path)
|
||||||
`(,name . ,path)))
|
`(,name . ,path)))
|
||||||
(append (or implicit-target-inputs) inputs)))
|
(append (or implicit-target-inputs '()) inputs)))
|
||||||
|
|
||||||
(gnu-build #:source ,(if (and source (derivation-path? source))
|
(gnu-build #:source ,(if (and source (derivation-path? source))
|
||||||
(derivation-path->output-path source)
|
(derivation-path->output-path source)
|
||||||
|
|
Loading…
Reference in New Issue