summaryrefslogtreecommitdiff
path: root/Debian/Debhelper
diff options
context:
space:
mode:
Diffstat (limited to 'Debian/Debhelper')
-rw-r--r--Debian/Debhelper/Buildsystem.pm4
-rw-r--r--Debian/Debhelper/Dh_Buildsystems.pm4
2 files changed, 4 insertions, 4 deletions
diff --git a/Debian/Debhelper/Buildsystem.pm b/Debian/Debhelper/Buildsystem.pm
index c16217f3..85a14013 100644
--- a/Debian/Debhelper/Buildsystem.pm
+++ b/Debian/Debhelper/Buildsystem.pm
@@ -323,7 +323,7 @@ sub rmdir_builddir {
# Instance method that is called before performing any step (see below).
# Action name is passed as an argument. Derived classes overriding this
# method should also call SUPER implementation of it.
-sub pre_step {
+sub pre_building_step {
my $this=shift;
my ($step)=@_;
}
@@ -331,7 +331,7 @@ sub pre_step {
# Instance method that is called after performing any step (see below).
# Action name is passed as an argument. Derived classes overriding this
# method should also call SUPER implementation of it.
-sub post_step {
+sub post_building_step {
my $this=shift;
my ($step)=@_;
}
diff --git a/Debian/Debhelper/Dh_Buildsystems.pm b/Debian/Debhelper/Dh_Buildsystems.pm
index 179d6334..eade5002 100644
--- a/Debian/Debhelper/Dh_Buildsystems.pm
+++ b/Debian/Debhelper/Dh_Buildsystems.pm
@@ -172,9 +172,9 @@ sub buildsystems_do {
my $buildsystem = load_buildsystem($step, $opt_buildsys);
if (defined $buildsystem) {
- $buildsystem->pre_step($step);
+ $buildsystem->pre_building_step($step);
$buildsystem->$step(@_, @{$dh{U_PARAMS}});
- $buildsystem->post_step($step);
+ $buildsystem->post_building_step($step);
}
return 0;
}