summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2022-07-23 21:19:43 +0200
committerUlrich Müller <ulm@gentoo.org>2022-07-24 19:49:45 +0200
commita6fbe08a1c5f8760ae7303b7ca936237085c94eb (patch)
treeb446e11c9235391219eba1940c3b7b2d1255752e /eclass/vcs-snapshot.eclass
parentruby-ng.eclass: Add missing inherit for eqawarn (diff)
downloadgentoo-a6fbe08a1c5f8760ae7303b7ca936237085c94eb.tar.gz
gentoo-a6fbe08a1c5f8760ae7303b7ca936237085c94eb.tar.bz2
gentoo-a6fbe08a1c5f8760ae7303b7ca936237085c94eb.zip
vcs-snapshot.eclass: Add missing inherit for eqawarn
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/vcs-snapshot.eclass')
-rw-r--r--eclass/vcs-snapshot.eclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/vcs-snapshot.eclass b/eclass/vcs-snapshot.eclass
index 64bc1da040f4..1b7299b92a3b 100644
--- a/eclass/vcs-snapshot.eclass
+++ b/eclass/vcs-snapshot.eclass
@@ -43,7 +43,8 @@
# in ${WORKDIR}/${P} and ${WORKDIR}/${P}-otherstuff respectively.
case ${EAPI} in
- 6|7|8) ;;
+ 6) inherit eqawarn ;;
+ 7|8) ;;
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
esac