guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: ratpoison: Fix reference to xterm.


From: guix-commits
Subject: branch master updated: gnu: ratpoison: Fix reference to xterm.
Date: Thu, 17 Nov 2022 13:57:42 -0500

This is an automated email from the git hooks/post-receive script.

apteryx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 983906ab72 gnu: ratpoison: Fix reference to xterm.
983906ab72 is described below

commit 983906ab72307a5b848a54233b30d9744356de07
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Thu Nov 17 12:45:45 2022 -0500

    gnu: ratpoison: Fix reference to xterm.
    
    The xterm binary must be provided to --with-xterm, not its installation
    prefix.
    
    * gnu/packages/ratpoison.scm (ratpoison) [configure-flags]: Adjust
    --with-xterm flag value.
---
 gnu/packages/ratpoison.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/ratpoison.scm b/gnu/packages/ratpoison.scm
index 799e4e0a8a..14933da5a8 100644
--- a/gnu/packages/ratpoison.scm
+++ b/gnu/packages/ratpoison.scm
@@ -52,8 +52,9 @@
       ;; Specify the absolute location of xterm, as the user experience sucks
       ;; when no terminal is available (can't consult help with 'C-t ?', for
       ;; example).
-      #:configure-flags #~(list (string-append "--with-xterm="
-                                               #$(this-package-input "xterm")))
+      #:configure-flags
+      #~(list (string-append "--with-xterm="
+                             (search-input-file %build-inputs "bin/xterm")))
       #:phases
       #~(modify-phases %standard-phases
           (add-after 'install 'install-xsession



reply via email to

[Prev in Thread] Current Thread [Next in Thread]