diff options
author | Ulrich Müller <ulm@gentoo.org> | 2017-12-25 17:33:41 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2017-12-29 17:39:29 +0100 |
commit | ce99333d45fec465f4503fc83b5529ece567983a (patch) | |
tree | da6f678831f68af2eaea435fb4d70defa203e2be /eclass | |
parent | x11-misc/kapow: Call gnome2_icon_cache_update(). (diff) | |
download | gentoo-ce99333d45fec465f4503fc83b5529ece567983a.tar.gz gentoo-ce99333d45fec465f4503fc83b5529ece567983a.tar.bz2 gentoo-ce99333d45fec465f4503fc83b5529ece567983a.zip |
elisp.eclass: Inherit epatch rather than eutils.
The only function needed from eutils was epatch() which has been split
off into its own eclass.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/elisp.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index 078a7994d00c..67459730aa61 100644 --- a/eclass/elisp.eclass +++ b/eclass/elisp.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # @ECLASS: elisp.eclass @@ -68,11 +68,11 @@ inherit elisp-common case ${EAPI:-0} in 0|1) - inherit eutils + inherit epatch EXPORT_FUNCTIONS src_{unpack,compile,install} \ pkg_{setup,postinst,postrm} ;; 2|3|4|5) - inherit eutils + inherit epatch EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \ pkg_{setup,postinst,postrm} ;; 6) |