summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Dh_Buildsystem.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/Dh_Buildsystem.pm
parent8bc41beed81ddc5ad864c7387bf61cac85ca739c (diff)
let's write class, not cls
Diffstat (limited to 'Debian/Debhelper/Dh_Buildsystem.pm')
-rw-r--r--Debian/Debhelper/Dh_Buildsystem.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/Debian/Debhelper/Dh_Buildsystem.pm b/Debian/Debhelper/Dh_Buildsystem.pm
index 573ace2a..afb13ea1 100644
--- a/Debian/Debhelper/Dh_Buildsystem.pm
+++ b/Debian/Debhelper/Dh_Buildsystem.pm
@@ -21,12 +21,12 @@ our $DEB_BUILD_GNU_TYPE = dpkg_architecture_value("DEB_BUILD_GNU_TYPE");
# doing.
sub NAME {
my $self=shift;
- my $cls = ref($self) || $self;
- if ($cls =~ m/^.+::([^:]+)$/) {
+ my $class = ref($self) || $self;
+ if ($class =~ m/^.+::([^:]+)$/) {
return $1;
}
else {
- error("ınvalid buildsystem class name: $cls");
+ error("ınvalid buildsystem class name: $class");
}
}
@@ -55,9 +55,9 @@ sub DEFAULT_BUILD_DIRECTORY {
# parameters and execute commands to configure build environment if
# is_buildable flag is set on the object.
sub new {
- my ($cls, %opts)=@_;
+ my ($class, %opts)=@_;
- my $self = bless({ builddir => undef, is_buildable => 1 }, $cls);
+ my $self = bless({ builddir => undef, is_buildable => 1 }, $class);
if (exists $opts{builddir}) {
if ($opts{builddir}) {
$self->{builddir} = $opts{builddir};
@@ -161,7 +161,7 @@ sub get_rel2builddir_path {
}
sub _cd {
- my ($cls, $dir)=@_;
+ my ($this, $dir)=@_;
if (! $dh{NO_ACT}) {
verbose_print("cd $dir");
chdir $dir or error("error: unable to chdir to $dir");