diff options
author | mharo <mharo@FreeBSD.org> | 2001-01-01 02:59:43 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 2001-01-01 02:59:43 +0800 |
commit | b2bbcbd33ef6972c8c015f51c22f4eec87b0164f (patch) | |
tree | bb56554ebf800f7a86a25ac5f3f02a99f2df9021 /ports-mgmt/portlint | |
parent | be039403976d62654ee494b39df4ba8b4bb3c870 (diff) | |
download | freebsd-ports-gnome-b2bbcbd33ef6972c8c015f51c22f4eec87b0164f.tar.gz freebsd-ports-gnome-b2bbcbd33ef6972c8c015f51c22f4eec87b0164f.tar.zst freebsd-ports-gnome-b2bbcbd33ef6972c8c015f51c22f4eec87b0164f.zip |
fix some typos, make some warning messages more verbose
PR: 23725
Submitted by: Jimmy Olgeni <olgeni@uli.it>
Diffstat (limited to 'ports-mgmt/portlint')
-rw-r--r-- | ports-mgmt/portlint/src/portlint.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ports-mgmt/portlint/src/portlint.pl b/ports-mgmt/portlint/src/portlint.pl index ac7ca31a3cf5..a96bb87ee684 100644 --- a/ports-mgmt/portlint/src/portlint.pl +++ b/ports-mgmt/portlint/src/portlint.pl @@ -573,7 +573,7 @@ sub checklastline { "terminated by \\n."); } if ($whole =~ /\n([ \t]*\n)+$/) { - &perror("WARN: $file seems to have unnecessery blank lines ". + &perror("WARN: $file seems to have unnecessary blank lines ". "at the last part."); } @@ -1077,7 +1077,7 @@ DISTFILES DIST_SUBDIR EXTRACT_ONLY "discouraged. distribution filename should be set by ". "DISTNAME and EXTRACT_SUFX."); if ($distfiles eq (($distname ne '') ? $distname : "$portname-$portversion") . $extractsufx) { - &perror("WARN: definition of DISTFILES not necessery. ". + &perror("WARN: definition of DISTFILES not necessary. ". "DISTFILES is \${DISTNAME}/\${EXTRACT_SUFX} ". "by default."); } @@ -1348,7 +1348,7 @@ LIB_DEPENDS BUILD_DEPENDS RUN_DEPENDS FETCH_DEPENDS DEPENDS DEPENDS_TARGET print "OK: seen NO_WRKSUBDIR, checking value of WRKSRC.\n" if ($verbose); if ($wrksrc eq 'work' || $wrksrc =~ /^$[\{\(]WRKDIR[\}\)]/) { - &perror("WARN: definition of WRKSRC not necessery. ". + &perror("WARN: definition of WRKSRC not necessary. ". "WRKSRC is \${WRKDIR} by default."); } } @@ -1413,7 +1413,7 @@ LIB_DEPENDS BUILD_DEPENDS RUN_DEPENDS FETCH_DEPENDS DEPENDS DEPENDS_TARGET "$i should be listed in ". "MAN\U$i\E, ". "even if compression is ". - "not necessery."); + "not necessary."); } } if ($mancompress && $plistman{$i}) { |