diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2018-12-02 11:42:21 +0530 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2018-12-02 11:42:21 +0530 |
commit | 2b16ae4b025a4d0f048972700b8ba06bf040f8d8 (patch) | |
tree | ea09eb9f62fe618d93c04c38913fb2c0f42da568 /gnu/packages/emacs.scm | |
parent | 1427d888e0ddfb04991d704daae2d09519b849af (diff) | |
download | guix-2b16ae4b025a4d0f048972700b8ba06bf040f8d8.tar guix-2b16ae4b025a4d0f048972700b8ba06bf040f8d8.tar.gz |
gnu: emacs-howm: Add make-autoloads phase after install phase.
* gnu/packages/emacs.scm (emacs-howm)[arguments]: Add make-autoloads phase
after install phase, not after the non-existent rename-lispdir phase.
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 41775241c3..297fb3330a 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1361,7 +1361,7 @@ a set of simplified face specifications and a user-supplied color palette") (guix build emacs-utils)) #:phases (modify-phases %standard-phases - (add-after 'rename-lispdir 'make-autoloads + (add-after 'install 'make-autoloads (assoc-ref emacs:%standard-phases 'make-autoloads))))) (home-page "http://howm.osdn.jp/") (synopsis "Note-taking tool for Emacs") |