summaryrefslogtreecommitdiff
path: root/morphlib/buildsystem.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/buildsystem.py')
-rw-r--r--morphlib/buildsystem.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/morphlib/buildsystem.py b/morphlib/buildsystem.py
index f5eae027..045616e4 100644
--- a/morphlib/buildsystem.py
+++ b/morphlib/buildsystem.py
@@ -150,11 +150,11 @@ class PythonDistutilsBuildSystem(BuildSystem):
return any(exists(x) for x in indicators)
-class PerlBuildSystem(BuildSystem):
+class CPANBuildSystem(BuildSystem):
- '''The Perl build system.'''
+ '''The Perl cpan build system.'''
- name = 'perl'
+ name = 'cpan'
def __init__(self):
self.configure_commands = [
@@ -181,7 +181,7 @@ build_systems = [
ManualBuildSystem(),
AutotoolsBuildSystem(),
PythonDistutilsBuildSystem(),
- PerlBuildSystem(),
+ CPANBuildSystem(),
DummyBuildSystem(),
]