diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2016-01-24 19:01:36 +0100 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2016-01-28 16:31:38 +0100 |
commit | 54523748354bb5144a9a9102fbcfabed49b71e73 (patch) | |
tree | 332367d8aee801d7fa5bf9c5e466468d3fd92444 /emacs.am | |
parent | 8dddedf778f85c3356466ed028ff3c2c6fedb44f (diff) | |
download | guix-54523748354bb5144a9a9102fbcfabed49b71e73.tar guix-54523748354bb5144a9a9102fbcfabed49b71e73.tar.gz |
build: Remove guix-autoloads.el from the distribution.
* emacs.am [HAVE_EMACS] (dist_lisp_DATA): Move $(AUTOLOADS) to ...
[HAVE_EMACS] (nodist_lisp_DATA): ... here.
(CLEANFILES) [HAVE_EMACS]: Add $(AUTOLOADS).
Diffstat (limited to 'emacs.am')
-rw-r--r-- | emacs.am | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -54,11 +54,11 @@ ELFILES = \ if HAVE_EMACS -dist_lisp_DATA = \ - $(ELFILES) \ - $(AUTOLOADS) +dist_lisp_DATA = $(ELFILES) -nodist_lisp_DATA = emacs/guix-config.el +nodist_lisp_DATA = \ + emacs/guix-config.el \ + $(AUTOLOADS) $(AUTOLOADS): $(ELFILES) $(AM_V_EMACS)$(EMACS) --batch --eval \ @@ -68,4 +68,6 @@ $(AUTOLOADS): $(ELFILES) (update-directory-autoloads \ (expand-file-name \"emacs\" \"$(srcdir)\")))" +CLEANFILES += $(AUTOLOADS) + endif HAVE_EMACS |