summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz>2001-02-16 12:58:57 +0000
committerwiz <wiz>2001-02-16 12:58:57 +0000
commit010b7c39b7b933b63231f256d54ad26fdb775ab7 (patch)
tree662f6593f8c11123dafcfdffbf30fd139cd05056
parent3503afeed3f3bea4fc120a809266ed14f26973b0 (diff)
downloadpkgsrc-010b7c39b7b933b63231f256d54ad26fdb775ab7.tar.gz
Fix 2 typos in comments.
-rwxr-xr-xmk/bulk/tflat8
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/bulk/tflat b/mk/bulk/tflat
index db05cdf8887..61797d58e22 100755
--- a/mk/bulk/tflat
+++ b/mk/bulk/tflat
@@ -1,5 +1,5 @@
#!/usr/bin/awk -f
-# $NetBSD: tflat,v 1.4 2001/02/11 17:07:34 dmcmahill Exp $
+# $NetBSD: tflat,v 1.5 2001/02/16 12:58:57 wiz Exp $
#
# Copyright (c) 2001 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -115,9 +115,9 @@ function find_all_depends(pkg,pkgreg,i,deps){
# if we find the package listed in its own depends list, then
# return an empty list if we're going down the depends tree.
- # When a package lists its self in the depends tree file, it simply
+ # When a package lists itself in the depends tree file, it simply
# is a place holder and means the package has no depends. However
- # other pacakges may still depend upon it, so we need to keep looking.
+ # other packages may still depend upon it, so we need to keep looking.
if ( (!up) && (topdepends[pkg]~reg2str(pkg)) ){
alldepends[pkg] = " ";
return(alldepends[pkg]);
@@ -142,7 +142,7 @@ function find_all_depends(pkg,pkgreg,i,deps){
#
# take a string which has special characters like '+' in it and
-# escape them. Also put a space before and after since thats how
+# escape them. Also put a space before and after since that's how
# we'll distinguish things like gnome from gnome-libs
#
function reg2str(reg){