From 153d40c7259a0b973a53bf8f28cdf839eb2a39e4 Mon Sep 17 00:00:00 2001 From: Modestas Vainius Date: Sun, 21 Jun 2009 22:12:24 +0300 Subject: Fix leftover from the old code. Signed-off-by: Modestas Vainius --- Debian/Debhelper/Buildsystem/python_distutils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Debian') diff --git a/Debian/Debhelper/Buildsystem/python_distutils.pm b/Debian/Debhelper/Buildsystem/python_distutils.pm index 8266fa0b..5a04d4e6 100644 --- a/Debian/Debhelper/Buildsystem/python_distutils.pm +++ b/Debian/Debhelper/Buildsystem/python_distutils.pm @@ -70,7 +70,7 @@ sub not_our_cfg { my $ret; if (open(my $cfg, $this->get_buildpath(".pydistutils.cfg"))) { $ret = not "# Created by dh_auto\n" eq <$cfg>; - close DISTUTILSCFG; + close $cfg; } return $ret; } -- cgit v1.2.3 From 141b5cea6a5ab4efee9d0994b84b88ac2e4c5bf5 Mon Sep 17 00:00:00 2001 From: Modestas Vainius Date: Sun, 21 Jun 2009 22:35:30 +0300 Subject: Terminology change. I previously used "built-in debhelper build system" or "default debhelper build system" for those shipped with debhelper. Now it is "standard debhelper build system". Signed-off-by: Modestas Vainius --- Debian/Debhelper/Dh_Buildsystems.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Debian') diff --git a/Debian/Debhelper/Dh_Buildsystems.pm b/Debian/Debhelper/Dh_Buildsystems.pm index df810208..3b150bd1 100644 --- a/Debian/Debhelper/Dh_Buildsystems.pm +++ b/Debian/Debhelper/Dh_Buildsystems.pm @@ -88,9 +88,9 @@ sub load_all_buildsystems { } } - # Push debhelper built-in build systems first + # Push standard debhelper build systems first for my $name (@BUILDSYSTEMS) { - error("debhelper built-in build system '$name' could not be found/loaded") + error("standard debhelper build system '$name' could not be found/loaded") if not exists $buildsystems{$name}; push @buildsystems, $buildsystems{$name}; delete $buildsystems{$name}; -- cgit v1.2.3