summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/repoman/checks.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py
index 7ecb235e8..dd81d8716 100644
--- a/pym/repoman/checks.py
+++ b/pym/repoman/checks.py
@@ -235,7 +235,9 @@ class InheritAutotools(LineCheck):
# Exempt eclasses:
# git - An EGIT_BOOTSTRAP variable may be used to call one of
# the autotools functions.
- _exempt_eclasses = frozenset(["git"])
+ # subversion - An ESVN_BOOTSTRAP variable may be used to call one of
+ # the autotools functions.
+ _exempt_eclasses = frozenset(["git", "subversion"])
def new(self, pkg):
self._inherit_autotools = None