diff options
author | Ulrich Müller <ulm@gentoo.org> | 2018-06-01 20:06:50 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2018-06-01 20:06:50 +0200 |
commit | 5e996d0ccda6670266632a5af345607c2d6a6aae (patch) | |
tree | 46e72233a08384997834616c18282074d8315cc0 /eclass | |
parent | app-emacs/emacs-common-gentoo: Sync from gentoo repo. (diff) | |
download | emacs-5e996d0ccda6670266632a5af345607c2d6a6aae.tar.gz emacs-5e996d0ccda6670266632a5af345607c2d6a6aae.tar.bz2 emacs-5e996d0ccda6670266632a5af345607c2d6a6aae.zip |
elisp.eclass: Sync from gentoo repo.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/elisp.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index 6745973..9a66ec5 100644 --- a/eclass/elisp.eclass +++ b/eclass/elisp.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # @ECLASS: elisp.eclass @@ -75,7 +75,7 @@ case ${EAPI:-0} in inherit epatch EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \ pkg_{setup,postinst,postrm} ;; - 6) + 6|7) EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \ pkg_{setup,postinst,postrm} ;; *) die "${ECLASS}: EAPI ${EAPI} not supported" ;; @@ -137,14 +137,14 @@ elisp_src_prepare() { fi case ${EAPI:-0} in 0|1|2|3|4|5) epatch "${file}" ;; - 6) eapply "${file}" ;; + *) eapply "${file}" ;; esac done # apply any user patches case ${EAPI:-0} in 0|1|2|3|4|5) epatch_user ;; - 6) eapply_user ;; + *) eapply_user ;; esac if [[ -n ${ELISP_REMOVE} ]]; then |