]> git.donarmstrong.com Git - debhelper.git/commitdiff
remove verbose_print of buildsystem selection details
authorJoey Hess <joey@gnu.kitenet.net>
Mon, 20 Apr 2009 19:09:38 +0000 (15:09 -0400)
committerJoey Hess <joey@gnu.kitenet.net>
Mon, 20 Apr 2009 19:09:38 +0000 (15:09 -0400)
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

index 0a48693f4263f1a0890918290ce6c0cae5814e0f..a9885bb89cce8bbd985bed135e4605bbd318980f 100644 (file)
@@ -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;
                        }
                }