summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-04-20 15:09:38 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-04-20 15:09:38 -0400
commit9ba005949259f0e9bcd9a3a094607d615be1eebd (patch)
treeee9be96e240736fbfa2a27839111f82ee4688fdf
parent059f0dc2f0961521904e82808ca5e2bab881eff0 (diff)
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.
-rw-r--r--Debian/Debhelper/Dh_Buildsystems.pm2
1 files changed, 0 insertions, 2 deletions
diff --git a/Debian/Debhelper/Dh_Buildsystems.pm b/Debian/Debhelper/Dh_Buildsystems.pm
index 0a48693f..a9885bb8 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;
}
}