]> git.donarmstrong.com Git - debhelper.git/commitdiff
Rename {pre,post}_step to {pre,post}_building_step.
authorModestas Vainius <modestas@vainius.eu>
Thu, 11 Jun 2009 00:23:51 +0000 (03:23 +0300)
committerModestas Vainius <modestas@vainius.eu>
Thu, 11 Jun 2009 00:23:51 +0000 (03:23 +0300)
Signed-off-by: Modestas Vainius <modestas@vainius.eu>
Debian/Debhelper/Buildsystem.pm
Debian/Debhelper/Dh_Buildsystems.pm

index c16217f3a70a71b51f717ebcbb044a38e6e01830..85a14013bfd19641953ab7f6151de8e693295ec7 100644 (file)
@@ -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)=@_;
 }
index 179d6334914330d6c2333c1b4c37fffff1682cc3..eade500253b54406c29af4a640211ff770a4054e 100644 (file)
@@ -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;
 }