]> git.donarmstrong.com Git - debhelper.git/commitdiff
First letter case fixes (should be lowercase) in error/warning messages.
authorModestas Vainius <modestas@vainius.eu>
Mon, 15 Jun 2009 13:11:45 +0000 (16:11 +0300)
committerModestas Vainius <modestas@vainius.eu>
Mon, 15 Jun 2009 13:11:45 +0000 (16:11 +0300)
Debian/Debhelper/Buildsystem.pm
Debian/Debhelper/Dh_Buildsystems.pm

index c2bba0b2c646b6695989969659358924296650bc..d144cf519d7b01d0237d7b3277031dc8bb87b158 100644 (file)
@@ -64,7 +64,7 @@ sub new {
                my $curdir = Cwd::getcwd();
                my $abspath = Cwd::abs_path($opts{sourcedir});
                if (! -d $abspath || $abspath !~ /^\Q$curdir\E/) {
-                       error("Invalid or non-existing path to the source directory: ".$opts{sourcedir});
+                       error("invalid or non-existing path to the source directory: ".$opts{sourcedir});
                }
                $this->{sourcedir} = File::Spec->abs2rel($abspath, $curdir);
        }
index d33b6f2cebb04ecf2ceb52054c6d30ba90f9db67..47d9d5824f1dccfe1b08f564ca4e40761e01c119 100644 (file)
@@ -89,7 +89,7 @@ sub load_all_buildsystems {
 
        # Push debhelper built-in buildsystems first
        for my $name (@BUILDSYSTEMS) {
-               error("Debhelper built-in buildsystem '$name' could not be found/loaded")
+               error("debhelper built-in buildsystem '$name' could not be found/loaded")
                    if not exists $buildsystems{$name};
                push @buildsystems, $buildsystems{$name};
                delete $buildsystems{$name};