From: John Turner Date: Tue, 29 Mar 2022 02:54:13 +0000 (-0400) Subject: app-emacs/flycheck: added src_compile impl that calls elisp-make-autoload-file X-Git-Url: https://jturnerusa.dev/gitweb/?a=commitdiff_plain;h=31bc4507308ef4bd35be2b9f01295295acf2441f;p=ebuilds app-emacs/flycheck: added src_compile impl that calls elisp-make-autoload-file --- 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 +}