gnu: mpd-mpc: Really fix directory for bash completions.
Commit 577fd21122
contains a typo wherein a dash
was used instead of an underscore. Compare for example the git package to see
where completions should be installed.
* gnu/packages/mpd.scm (mpd-mpc)[move-completion]: Use “etc/bash_completion.d”
instead of “etc/bash-completion.d”.
master
parent
fc6325ea0d
commit
a25a492f2b
|
@ -252,7 +252,7 @@ protocol.")
|
|||
(let* ((out (assoc-ref outputs "out"))
|
||||
(contrib (string-append out "/share/doc/mpc/contrib"))
|
||||
(completion
|
||||
(string-append out "/etc/bash-completion.d/")))
|
||||
(string-append out "/etc/bash_completion.d/")))
|
||||
(mkdir-p completion)
|
||||
(rename-file (string-append contrib "/mpc-completion.bash")
|
||||
(string-append completion "/mpc"))))))))
|
||||
|
|
Reference in New Issue