summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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(),