From a734bdd7c78b0f3d27d7eacd3d50702d4abe8201 Mon Sep 17 00:00:00 2001 From: Modestas Vainius Date: Mon, 15 Jun 2009 16:11:45 +0300 Subject: [PATCH] First letter case fixes (should be lowercase) in error/warning messages. --- Debian/Debhelper/Buildsystem.pm | 2 +- Debian/Debhelper/Dh_Buildsystems.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Debian/Debhelper/Buildsystem.pm b/Debian/Debhelper/Buildsystem.pm index c2bba0b..d144cf5 100644 --- a/Debian/Debhelper/Buildsystem.pm +++ b/Debian/Debhelper/Buildsystem.pm @@ -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); } diff --git a/Debian/Debhelper/Dh_Buildsystems.pm b/Debian/Debhelper/Dh_Buildsystems.pm index d33b6f2..47d9d58 100644 --- a/Debian/Debhelper/Dh_Buildsystems.pm +++ b/Debian/Debhelper/Dh_Buildsystems.pm @@ -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}; -- 2.39.5