diff options
author | Mathieu Lirzin <mthl@openmailbox.org> | 2015-08-06 11:36:53 +0200 |
---|---|---|
committer | Mathieu Lirzin <mthl@openmailbox.org> | 2015-08-30 19:20:12 +0200 |
commit | bd6163d13f6445b9a1ec0f85e4a19b9f73ab74ea (patch) | |
tree | 99396ace587f2c69c05882e88910fba37fb605fa /emacs.am | |
parent | eb097f36b1c3e7a25f1ce212670e8a19788fd195 (diff) | |
download | patches-bd6163d13f6445b9a1ec0f85e4a19b9f73ab74ea.tar patches-bd6163d13f6445b9a1ec0f85e4a19b9f73ab74ea.tar.gz |
build: Produce 'guix-config' instead of using compile-time tricks.
* emacs/guix-{init,profiles}.el.in: Rename to ...
* emacs/guix-{init,profiles}.el: ... these. New files.
Use 'guix-config'.
* emacs/guix-config.el.in: New file.
* emacs.am (nodist_lisp_DATA): Add it. Move them to ...
(ELFILES): ... here.
* .gitignore, configure.ac: Adjust accordingly.
Diffstat (limited to 'emacs.am')
-rw-r--r-- | emacs.am | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -26,11 +26,13 @@ ELFILES = \ emacs/guix-help-vars.el \ emacs/guix-history.el \ emacs/guix-info.el \ + emacs/guix-init.el \ emacs/guix-list.el \ emacs/guix-messages.el \ emacs/guix-pcomplete.el \ emacs/guix-popup.el \ emacs/guix-prettify.el \ + emacs/guix-profiles.el \ emacs/guix-read.el \ emacs/guix-utils.el \ emacs/guix.el @@ -41,9 +43,7 @@ dist_lisp_DATA = \ $(ELFILES) \ $(AUTOLOADS) -nodist_lisp_DATA = \ - emacs/guix-init.el \ - emacs/guix-profiles.el +nodist_lisp_DATA = emacs/guix-config.el $(AUTOLOADS): $(ELFILES) $(EMACS) --batch --eval \ |