diff options
author | Ludovic Courtès | 2022-04-10 22:03:45 +0200 |
---|---|---|
committer | Ludovic Courtès | 2022-04-10 22:03:45 +0200 |
commit | 3746030f437db70c8ede10f7f063fac2a8d51248 (patch) | |
tree | 64798fc00ad47493df7c8880baf0d9fc50798537 | |
parent | fb51be990a4bb8fb76373b519edfcf11390dcca1 (diff) | |
download | skribilo-3746030f437db70c8ede10f7f063fac2a8d51248.tar.gz skribilo-3746030f437db70c8ede10f7f063fac2a8d51248.tar.lz skribilo-3746030f437db70c8ede10f7f063fac2a8d51248.zip |
emacs: Do not delete "skribilo.el" on 'make clean'.
Fixes <https://bugs.gnu.org/54594>.
Reported by Arun Isaac <arunisaac@systemreboot.net>.
* emacs/Makefile.am (CLEANFILES): Change to "skribe.el".
-rw-r--r-- | emacs/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/Makefile.am b/emacs/Makefile.am index 85d0027..516fe1d 100644 --- a/emacs/Makefile.am +++ b/emacs/Makefile.am @@ -1,7 +1,7 @@ EXTRA_DIST = skribe.el.in lisp_DATA = skribe.el skribilo.el -CLEANFILES = $(lisp_DATA) +CLEANFILES = skribe.el include $(top_srcdir)/substitute.am |