summaryrefslogtreecommitdiff
path: root/guix/build
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2019-12-08 07:18:46 +0900
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2019-12-08 11:58:08 +0900
commitd0105e7f2902359de5e96d268a7e5850dae7dff7 (patch)
treea59b7fb323a00c9b557f0e399340edaf1e53a8ec /guix/build
parent629a53844bc38242703b911360d9bebf43683e13 (diff)
downloadpatches-d0105e7f2902359de5e96d268a7e5850dae7dff7.tar
patches-d0105e7f2902359de5e96d268a7e5850dae7dff7.tar.gz
emacs-build-system: Make the order of the phases more clear.
* guix/build/emacs-build-system.scm (%standard-phases): Re-arrange to explicit the ordering of phases.
Diffstat (limited to 'guix/build')
-rw-r--r--guix/build/emacs-build-system.scm7
1 files changed, 3 insertions, 4 deletions
diff --git a/guix/build/emacs-build-system.scm b/guix/build/emacs-build-system.scm
index e2b792d3dc..41a42057fa 100644
--- a/guix/build/emacs-build-system.scm
+++ b/guix/build/emacs-build-system.scm
@@ -239,15 +239,14 @@ second hyphen. This corresponds to 'name-version' as used in ELPA packages."
(add-after 'unpack 'add-source-to-load-path add-source-to-load-path)
(delete 'bootstrap)
(delete 'configure)
- ;; Move the build phase after install: the .el files are byte compiled
- ;; directly in the store.
(delete 'build)
(replace 'check check)
(replace 'install install)
- (add-after 'install 'build build)
(add-after 'install 'make-autoloads make-autoloads)
(add-after 'make-autoloads 'patch-el-files patch-el-files)
- (add-after 'make-autoloads 'move-doc move-doc)))
+ ;; The .el files are byte compiled directly in the store.
+ (add-after 'patch-el-files 'build build)
+ (add-after 'build 'move-doc move-doc)))
(define* (emacs-build #:key inputs (phases %standard-phases)
#:allow-other-keys #:rest args)