summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa+gentoo@gmail.com>2022-03-28 22:54:13 -0400
committerJohn Turner <jturner.usa+gentoo@gmail.com>2022-03-28 22:54:13 -0400
commit31bc4507308ef4bd35be2b9f01295295acf2441f (patch)
tree07a5df7be77fe11124f59343f06050f3e8db3d76
parentcd8715cd476284b859d2eb0488698fadc5ebd597 (diff)
downloadebuilds-31bc4507308ef4bd35be2b9f01295295acf2441f.tar.gz
app-emacs/flycheck: added src_compile impl that calls elisp-make-autoload-file
-rw-r--r--app-emacs/flycheck/flycheck-32.ebuild7
1 files changed, 6 insertions, 1 deletions
diff --git a/app-emacs/flycheck/flycheck-32.ebuild b/app-emacs/flycheck/flycheck-32.ebuild
index 2513b79..18fb34a 100644
--- a/app-emacs/flycheck/flycheck-32.ebuild
+++ b/app-emacs/flycheck/flycheck-32.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -38,3 +38,8 @@ RDEPEND=">=app-emacs/dash-2.12.1
SITEFILE="50${PN}-gentoo.el"
DOCS=( README.md )
ELISP_REMOVE="flycheck-buttercup.el flycheck-ert.el"
+
+src_compile() {
+ elisp-make-autoload-file "${S}"/${PN}-autoload.el "${S}"/
+ elisp_src_compile
+}