Signed-off-by: Modestas Vainius <modestas@vainius.eu>
# 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)=@_;
}
# 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)=@_;
}
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;
}