me
/
guix
Archived
1
0
Fork 0

gnu: emacs-chess: Fix path to pieces.

* gnu/packages/emacs-xyz.scm (emacs-chess)[arguments]: Fix path to pieces in
phase install-pieces.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Michael Rohleder 2022-04-15 09:40:40 +02:00 committed by Ludovic Courtès
parent 283088f7b1
commit f2239f3b95
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 2 additions and 1 deletions

View File

@ -8454,7 +8454,8 @@ board and goal value can be customized.")
(add-after 'install 'install-pieces
(lambda _
(let ((pieces
(string-append #$output "/share/emacs/site-lisp/pieces")))
(string-append #$output "/share/emacs/site-lisp/chess-"
#$version "/pieces")))
(mkdir-p pieces)
(copy-recursively "pieces" pieces)))))))
(home-page "https://elpa.gnu.org/packages/chess.html")