summaryrefslogtreecommitdiff
path: root/morphlib/buildsystem.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-04-23 11:37:37 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-04-23 15:47:19 +0000
commit2ff9dd7294f09179813b49920e11b57bbd945cda (patch)
treec84c543e6a920e5f82ce500bf48fa2a276d24493 /morphlib/buildsystem.py
parentee6bbaeb6648349ae62735df470e4c5e2ed1f28b (diff)
downloadmorph-2ff9dd7294f09179813b49920e11b57bbd945cda.tar.gz
buildsystem: rename Perl build system to CPAN
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(),
]