build-system/mozilla: Fix typo in the cross-compilation case.
Fixes <https://issues.guix.gnu.org/56633>. Reported by Marius Bakke <marius@gnu.org>. * guix/build-system/mozilla.scm (lower-mozilla): Pass NAME as the first argument to LOWER when TARGET is true.
This commit is contained in:
parent
b09e968667
commit
5dfc6ab1ab
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@
|
||||||
#:rest arguments)
|
#:rest arguments)
|
||||||
(define lower (build-system-lower gnu-build-system))
|
(define lower (build-system-lower gnu-build-system))
|
||||||
(if target
|
(if target
|
||||||
(apply lower
|
(apply lower name
|
||||||
(substitute-keyword-arguments arguments
|
(substitute-keyword-arguments arguments
|
||||||
;; Override --target and --host to what Mozillian configure
|
;; Override --target and --host to what Mozillian configure
|
||||||
;; scripts expect.
|
;; scripts expect.
|
||||||
|
|
Reference in a new issue