diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-04-01 17:50:26 +0200 |
---|---|---|
committer | Clément Lassieur <clement@lassieur.org> | 2024-04-03 12:36:41 +0200 |
commit | 1dbe492b993a7629df3b35146ce0272b52913776 (patch) | |
tree | 40e5a16e1abf0bc52e7e37a442c57465f8043917 | |
parent | f26b42f6c07a00dd2cecb006846e672b88748b84 (diff) | |
download | guix-1dbe492b993a7629df3b35146ce0272b52913776.tar guix-1dbe492b993a7629df3b35146ce0272b52913776.tar.gz |
gnu: emacs-magit: Fix generation of autoloads.
* gnu/packages/emacs-xyz.scm (emacs-magit)[#:phases]: Replace ‘make-autoloads’
like the others.
Fixes: Magit autoloads are missing <https://bugs.gnu.org/70121>
Change-Id: Iec1d89b167211889743ed1e7e64a9f866ea4c2eb
Signed-off-by: Clément Lassieur <clement@lassieur.org>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 977aa89729..e460fccc5b 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1668,6 +1668,10 @@ libgit2 bindings for Emacs, intended to boost the performance of Magit.") (lambda args (with-directory-excursion "lisp" (apply (assoc-ref %standard-phases 'expand-load-path) args)))) + (replace 'make-autoloads + (lambda args + (with-directory-excursion "lisp" + (apply (assoc-ref %standard-phases 'make-autoloads) args)))) (replace 'install (lambda args (with-directory-excursion "lisp" |