mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: icedove-l10n: Fix build.
Fixes <https://issues.guix.gnu.org/73192> * gnu/packages/gnuzilla.scm (make-l10n-package)[arguments]<#:phases>: On 'build phase unconditionally use 'system*' to invoke 'mach', as 'invoke' does not work for icedove any longer. Reported-by: bdju <bdju@tilde.team>. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
parent
b7c94d5288
commit
fc059c66cf
1 changed files with 5 additions and 7 deletions
|
@ -1684,13 +1684,11 @@ (define (find-file dir name)
|
|||
'thunderbird
|
||||
'#$project))))
|
||||
(format #t "processing locale `~a'...~%" l)
|
||||
(if (eq? 'icecat '#$project)
|
||||
;; XXX: For some reasons, for IceCat, there are some
|
||||
;; parsing errors that cause the build system to
|
||||
;; return an unclean exit code; use system* to ignore
|
||||
;; errors.
|
||||
(system* "./mach" "build" (string-append "langpack-" l))
|
||||
(invoke "./mach" "build" (string-append "langpack-" l)))
|
||||
;; XXX: For some reasons, on version 115, there are some
|
||||
;; parsing errors that cause the build system to
|
||||
;; return an unclean exit code; use system* to ignore
|
||||
;; errors.
|
||||
(system* "./mach" "build" (string-append "langpack-" l))
|
||||
(mkdir-p ext-dir)
|
||||
(let ((xpi (find-file "obj" (string-append
|
||||
"\\." l "\\.langpack\\.xpi$"))))
|
||||
|
|
Loading…
Reference in a new issue