summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorModestas Vainius <modestas@vainius.eu>2009-06-30 01:07:58 +0300
committerModestas Vainius <modestas@vainius.eu>2009-06-30 01:07:58 +0300
commit8890fd28cdca58fc15306e34d022f312a2708ca6 (patch)
treee54e4cb453035c64de6141dc2eb9d6cbca008ad6
parentb90485a4fdfa023848e83c34a6db2fa12905201e (diff)
Call SUPER in python_distutils::pre_building_step.
Signed-off-by: Modestas Vainius <modestas@vainius.eu>
-rw-r--r--Debian/Debhelper/Buildsystem/python_distutils.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/Debian/Debhelper/Buildsystem/python_distutils.pm b/Debian/Debhelper/Buildsystem/python_distutils.pm
index bb502573..56f13dd9 100644
--- a/Debian/Debhelper/Buildsystem/python_distutils.pm
+++ b/Debian/Debhelper/Buildsystem/python_distutils.pm
@@ -73,6 +73,8 @@ sub pre_building_step {
# Distutils reads $HOME/.pydistutils.cfg
$ENV{HOME} = Cwd::abs_path($this->get_buildpath());
}
+
+ $this->SUPER::pre_building_step($step);
}
sub setup_py {