mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: icedove/wayland: Wrap quotes around ‘$@’ in the executable.
Fixes <https://issues.guix.gnu.org/66643>. * gnu/packages/gnuzilla (icedove/wayland)[arguments]: Wrap quotes around ‘$@’ in the executable script. Signed-off-by: Clément Lassieur <clement@lassieur.org>
This commit is contained in:
parent
5960c3cdc4
commit
de9aafae17
1 changed files with 2 additions and 1 deletions
|
@ -20,6 +20,7 @@
|
|||
;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
;;; Copyright © 2021 Baptiste Strazzul <bstrazzull@hotmail.fr>
|
||||
;;; Copyright © 2022 SeerLite <seerlite@disroot.org>
|
||||
;;; Copyright © 2024 Aleksandr Vityazev <avityazew@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -2091,7 +2092,7 @@ (define-public icedove/wayland
|
|||
(call-with-output-file exe
|
||||
(lambda (port)
|
||||
(format port "#!~a
|
||||
MOZ_ENABLE_WAYLAND=1 exec ~a $@"
|
||||
MOZ_ENABLE_WAYLAND=1 exec ~a \"$@\""
|
||||
#$(file-append bash-minimal "/bin/bash")
|
||||
#$(file-append icedove "/bin/icedove"))))
|
||||
(chmod exe #o555)
|
||||
|
|
Loading…
Reference in a new issue