From 2ff9dd7294f09179813b49920e11b57bbd945cda Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Mon, 23 Apr 2012 11:37:37 +0000 Subject: buildsystem: rename Perl build system to CPAN --- morphlib/buildsystem.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'morphlib/buildsystem.py') 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(), ] -- cgit v1.2.1