summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem.pm
diff options
context:
space:
mode:
authorModestas Vainius <modestas@vainius.eu>2009-06-15 16:11:45 +0300
committerModestas Vainius <modestas@vainius.eu>2009-06-15 16:11:45 +0300
commita734bdd7c78b0f3d27d7eacd3d50702d4abe8201 (patch)
tree570f525fe0fe0a58337855efb855e6567bf0a3e9 /Debian/Debhelper/Buildsystem.pm
parentfe3de315ed7ce24c49756af4ebdaa6b88f86a12d (diff)
First letter case fixes (should be lowercase) in error/warning messages.
Diffstat (limited to 'Debian/Debhelper/Buildsystem.pm')
-rw-r--r--Debian/Debhelper/Buildsystem.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Debian/Debhelper/Buildsystem.pm b/Debian/Debhelper/Buildsystem.pm
index c2bba0b2..d144cf51 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);
}