build-system: emacs: Clarify %install-dir.

The old comment is no longer adequate, see
<https://lists.gnu.org/archive/html/guix-patches/2021-05/msg00113.html>.

* guix/build/emacs-build-system.scm (%install-dir): Adjust comment to better
reflect usage of this variable.
This commit is contained in:
Leo Prikler 2021-05-05 09:52:02 +02:00
parent c1036042a5
commit 0f116d7f90
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87

View File

@ -43,9 +43,12 @@
;; ;;
;; Code: ;; Code:
;;; All the packages are installed directly under site-lisp, which means that ;;; The location in which Emacs looks for packages. Emacs Lisp code that is
;;; having that directory in the EMACSLOADPATH is enough to have them found by ;;; installed there directly will be found when that directory is added to
;;; Emacs. ;;; EMACSLOADPATH. To avoid clashes between packages (particularly considering
;;; auxiliary files), we install them one directory level below, however.
;;; This indirection is handled by expand-load-path during build and a
;;; profile hook otherwise.
(define %install-dir "/share/emacs/site-lisp") (define %install-dir "/share/emacs/site-lisp")
;; These are the default inclusion/exclusion regexps for the install phase. ;; These are the default inclusion/exclusion regexps for the install phase.