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:
Ludovic Courtès 2015-03-19 19:08:19 +01:00
parent 0e991c25d6
commit a5f6065910
1 changed files with 1 additions and 1 deletions

View File

@ -478,7 +478,7 @@ operations.")
(string-append "\"" alsa "/bin/amixer\"")))
(substitute* "emms-tag-editor.el"
(("\"mp3info\"")
(string-append mp3info "/bin/mp3info"))))))
(string-append "\"" mp3info "/bin/mp3info\""))))))
(alist-cons-before
'install 'pre-install
(lambda* (#:key outputs #:allow-other-keys)