summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem.pm
diff options
context:
space:
mode:
authorModestas Vainius <modestas@vainius.eu>2009-06-11 03:23:51 +0300
committerModestas Vainius <modestas@vainius.eu>2009-06-11 03:23:51 +0300
commit26631f8cd7c72f5e546d3ccff7d24224fb44961f (patch)
tree5b902e6461c06b77c77d2bce77ef2a001ccd7e72 /Debian/Debhelper/Buildsystem.pm
parentf497dbc85a13c9e4cea603a4c2f14d220479a359 (diff)
Rename {pre,post}_step to {pre,post}_building_step.
Signed-off-by: Modestas Vainius <modestas@vainius.eu>
Diffstat (limited to 'Debian/Debhelper/Buildsystem.pm')
-rw-r--r--Debian/Debhelper/Buildsystem.pm4
1 files changed, 2 insertions, 2 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)=@_;
}