summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Dh_Buildsystems.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/Dh_Buildsystems.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/Dh_Buildsystems.pm')
-rw-r--r--Debian/Debhelper/Dh_Buildsystems.pm4
1 files changed, 2 insertions, 2 deletions
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;
}