build: emacs: Search for elisp in "share/emacs/site-lisp".
* guix/build/emacs-build-system.scm (emacs-inputs-el-directories): Add ".../share/emacs/site-lisp" directory to the returned result as elisp files can also be placed there.
This commit is contained in:
parent
b3470031df
commit
2831675bfd
1 changed files with 7 additions and 4 deletions
|
@ -1,5 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
|
||||
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
||||
;;; Copyright © 2016 Alex Kost <alezost@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -152,10 +154,11 @@ (define (emacs-inputs-directories inputs)
|
|||
(define (emacs-inputs-el-directories dirs)
|
||||
"Build the list of Emacs Lisp directories from the Emacs package directory
|
||||
DIRS."
|
||||
(map (lambda (d)
|
||||
(string-append d %install-suffix "/"
|
||||
(store-directory->elpa-name-version d)))
|
||||
dirs))
|
||||
(append-map (lambda (d)
|
||||
(list (string-append d "/share/emacs/site-lisp")
|
||||
(string-append d %install-suffix "/"
|
||||
(store-directory->elpa-name-version d))))
|
||||
dirs))
|
||||
|
||||
(define (package-name-version->elpa-name-version name-ver)
|
||||
"Convert the Guix package NAME-VER to the corresponding ELPA name-version
|
||||
|
|
Loading…
Reference in a new issue