mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
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.
This commit is contained in:
parent
bb4d32b655
commit
983906ab72
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue