From 9ba005949259f0e9bcd9a3a094607d615be1eebd Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 20 Apr 2009 15:09:38 -0400 Subject: [PATCH] remove verbose_print of buildsystem selection details This would be the only place in debhelper where -v enables debugging info that is not just shell commands being run. Since --list can be used to see details of build system selection, and since it will probably be obvious which one is selected in -v mode due to the commands run, I think this oddity is unnecessary. --- Debian/Debhelper/Dh_Buildsystems.pm | 2 -- 1 file changed, 2 deletions(-) diff --git a/Debian/Debhelper/Dh_Buildsystems.pm b/Debian/Debhelper/Dh_Buildsystems.pm index 0a48693..a9885bb 100644 --- a/Debian/Debhelper/Dh_Buildsystems.pm +++ b/Debian/Debhelper/Dh_Buildsystems.pm @@ -48,7 +48,6 @@ sub load_buildsystem { my ($action, $system)=@_; if (defined $system) { my $inst = create_buildsystem_instance($system); - verbose_print("Selected buildsystem (specified): ".$inst->NAME()); return $inst; } else { @@ -56,7 +55,6 @@ sub load_buildsystem { for $system (@BUILDSYSTEMS) { my $inst = create_buildsystem_instance($system, build_action=>$action); if ($inst->is_buildable()) { - verbose_print("Selected buildsystem (auto): ". $inst->NAME()); return $inst; } } -- 2.39.5