diff options
author | Ulrich Müller <ulm@gentoo.org> | 2021-09-02 10:53:42 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2021-09-03 17:19:43 +0200 |
commit | 7e2f3b0be05579dea042e03c7720575629fdc0a4 (patch) | |
tree | 095e224a8f5a72145e3614635ec9a99610bfc65f /eclass/mercurial.eclass | |
parent | linux-mod.eclass: Move EXPORT_FUNCTIONS below inherit (diff) | |
download | gentoo-7e2f3b0be05579dea042e03c7720575629fdc0a4.tar.gz gentoo-7e2f3b0be05579dea042e03c7720575629fdc0a4.tar.bz2 gentoo-7e2f3b0be05579dea042e03c7720575629fdc0a4.zip |
mercurial.eclass: Move EXPORT_FUNCTIONS below inherit
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/mercurial.eclass')
-rw-r--r-- | eclass/mercurial.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mercurial.eclass b/eclass/mercurial.eclass index b62ecdf102a5..5d0ebf0d9e4f 100644 --- a/eclass/mercurial.eclass +++ b/eclass/mercurial.eclass @@ -20,8 +20,6 @@ case ${EAPI:-0} in *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -EXPORT_FUNCTIONS src_unpack - if [[ -z ${_MERCURIAL_ECLASS} ]] ; then _MERCURIAL_ECLASS=1 @@ -219,3 +217,5 @@ function mercurial_src_unpack { } fi + +EXPORT_FUNCTIONS src_unpack |