summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem/makefile.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-04-20 14:37:49 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-04-20 14:37:49 -0400
commit714e330012e0b44220312aba526b4ebaa63ef60f (patch)
tree5671618d47cc5fcfdf80361a2bc7baf869693c8d /Debian/Debhelper/Buildsystem/makefile.pm
parent8bc41beed81ddc5ad864c7387bf61cac85ca739c (diff)
let's write class, not cls
Diffstat (limited to 'Debian/Debhelper/Buildsystem/makefile.pm')
-rw-r--r--Debian/Debhelper/Buildsystem/makefile.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Debian/Debhelper/Buildsystem/makefile.pm b/Debian/Debhelper/Buildsystem/makefile.pm
index 9ac74fa2..0eab0c4a 100644
--- a/Debian/Debhelper/Buildsystem/makefile.pm
+++ b/Debian/Debhelper/Buildsystem/makefile.pm
@@ -47,8 +47,8 @@ sub DESCRIPTION {
}
sub new {
- my $cls=shift;
- my $self=$cls->SUPER::new(@_);
+ my $class=shift;
+ my $self=$class->SUPER::new(@_);
$self->{makecmd} = (exists $ENV{MAKE}) ? $ENV{MAKE} : "make";
return $self;
}