From 983906ab72307a5b848a54233b30d9744356de07 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 17 Nov 2022 12:45:45 -0500 Subject: 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(-) (limited to 'gnu') 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 -- cgit v1.2.3