[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: mpd-mpc: Really fix directory for bash compl
From: |
guix-commits |
Subject: |
branch master updated: gnu: mpd-mpc: Really fix directory for bash completions. |
Date: |
Mon, 23 Oct 2023 04:28:13 -0400 |
This is an automated email from the git hooks/post-receive script.
lilyp pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new a25a492f2b gnu: mpd-mpc: Really fix directory for bash completions.
a25a492f2b is described below
commit a25a492f2b8604de4ebc21298f24891a1a245161
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Mon Oct 23 10:24:08 2023 +0200
gnu: mpd-mpc: Really fix directory for bash completions.
Commit 577fd21122ca50ab7594be9adf0c5c06d5b26678 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”.
---
gnu/packages/mpd.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index 0fa24896fa..0edc056472 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -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"))))))))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: mpd-mpc: Really fix directory for bash completions.,
guix-commits <=