diff options
author | NoƩ Lopez <noelopez@free.fr> | 2025-04-09 23:49:43 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-04-13 18:18:14 +0200 |
commit | b5ff41c0379a35be7a1d15234feaafeae44ad8a2 (patch) | |
tree | cc501c4175d13251b952070935e27c6b768e3c20 | |
parent | e54cfb34392189fea18a65452843955183238f43 (diff) | |
download | guix-b5ff41c0379a35be7a1d15234feaafeae44ad8a2.tar.gz guix-b5ff41c0379a35be7a1d15234feaafeae44ad8a2.zip |
gnu: orca: Fix xkbcomp path.
The calling code was moved to a different file where substitute* was not
changing it.
* gnu/packages/gnome.scm (orca): Change file for xkbcomp substitution.
Change-Id: I92751b0fd639042007e956b234b9f248845a3970
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
-rw-r--r-- | gnu/packages/gnome.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index ed71fed863..fc08ca9a2b 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -11677,7 +11677,7 @@ accessibility infrastructure.") (assoc-ref inputs "xkbcomp") "/bin/xkbcomp")) (pgrep (string-append (assoc-ref inputs "procps") "/bin/pgrep"))) - (substitute* "src/orca/orca.py" + (substitute* "src/orca/orca_modifier_manager.py" (("'xkbcomp'") (format #f "'~a'" xkbcomp))) (substitute* "src/orca/debug.py" (("'pgrep %s'") |