summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Ipsum <richard.ipsum@codethink.co.uk>2015-07-09 22:15:53 +0100
committerBaserock Gerrit <gerrit@baserock.org>2015-09-07 14:41:06 +0000
commitbf9f0ffabd5bfdc0b6fb06f065389a7971e007e2 (patch)
treea77a33e1ee70eae092a0b6ad23338a1f0330fbc8
parentf17779453a81824872e1e0d1be4f36b7f62e212f (diff)
downloadmorph-bf9f0ffabd5bfdc0b6fb06f065389a7971e007e2.tar.gz
Rename CPANBuildSystem to ExtUtilsMakeMakerBuildSystem
There are several perl build systems. Change-Id: I17b5d61b7bffbdbcb9944e9e41449bec7a69c527
-rw-r--r--morphlib/buildsystem.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/morphlib/buildsystem.py b/morphlib/buildsystem.py
index 9f001036..933f9b91 100644
--- a/morphlib/buildsystem.py
+++ b/morphlib/buildsystem.py
@@ -190,7 +190,7 @@ class PythonDistutilsBuildSystem(BuildSystem):
return any(x in file_list for x in indicators)
-class CPANBuildSystem(BuildSystem):
+class ExtUtilsMakeMakerBuildSystem(BuildSystem):
'''The Perl cpan build system.'''
@@ -286,7 +286,7 @@ build_systems = [
ManualBuildSystem(),
AutotoolsBuildSystem(),
PythonDistutilsBuildSystem(),
- CPANBuildSystem(),
+ ExtUtilsMakeMakerBuildSystem(),
CMakeBuildSystem(),
QMakeBuildSystem(),
DummyBuildSystem(),