Fix minor grammatical nits in error output.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Glen Barber 2017-12-12 16:04:47 +00:00
parent 3009c2d43a
commit 870aad0cf4
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=51300
2 changed files with 2 additions and 2 deletions

View file

@ -77,7 +77,7 @@ if ($file =~ m,^([0-9a-z/-]+|[0-9a-z/-]+\.[0-9a-z-]+)$,) {
sub file_not_exists {
my $file = shift;
print "File does not exists: $file\n";
print "File does not exist: $file\n";
exit;
}

View file

@ -19,7 +19,7 @@ _DOCBOOK_DEPS_SYSTEM != for i in $$(egrep '<!ENTITY [^ ]+ SYSTEM "[^ ]+\.xml">'
if [ -e $$i ]; then \
echo $i; \
else \
echo "Warning: dep file $$(pwd)/$$i does not exists" >&2; \
echo "Warning: dep file $$(pwd)/$$i does not exist" >&2; \
fi; \
done
.endif