mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 19:49:25 -05:00
gnu: emms: Fix incorrect substitution in emms-tag-editor.el.
* gnu/packages/emacs.scm (emms)[arguments] <configure>: Add missing quotes in mp3info substitution in emms-tag-editor.el.
This commit is contained in:
parent
0e991c25d6
commit
a5f6065910
1 changed files with 1 additions and 1 deletions
|
@ -478,7 +478,7 @@ (define-public emms
|
||||||
(string-append "\"" alsa "/bin/amixer\"")))
|
(string-append "\"" alsa "/bin/amixer\"")))
|
||||||
(substitute* "emms-tag-editor.el"
|
(substitute* "emms-tag-editor.el"
|
||||||
(("\"mp3info\"")
|
(("\"mp3info\"")
|
||||||
(string-append mp3info "/bin/mp3info"))))))
|
(string-append "\"" mp3info "/bin/mp3info\""))))))
|
||||||
(alist-cons-before
|
(alist-cons-before
|
||||||
'install 'pre-install
|
'install 'pre-install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in a new issue