diff options
author | schweikh <schweikh@FreeBSD.org> | 2002-12-30 21:18:15 +0000 |
---|---|---|
committer | schweikh <schweikh@FreeBSD.org> | 2002-12-30 21:18:15 +0000 |
commit | 86f7487fb6a0b8dd9e3a699ad48d6e99504a67ff (patch) | |
tree | bd0234a8048c844b06483795cfb1fe4d34b68a4f /tools | |
parent | 338583ff7c1145c5e2deba34aed769eb7998286c (diff) | |
download | FreeBSD-src-86f7487fb6a0b8dd9e3a699ad48d6e99504a67ff.zip FreeBSD-src-86f7487fb6a0b8dd9e3a699ad48d6e99504a67ff.tar.gz |
Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/
Add FreeBSD Id tag where missing.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/tools/mid/mid-build | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/tools/mid/mid-build b/tools/tools/mid/mid-build index ced5f4c..0a2d448 100755 --- a/tools/tools/mid/mid-build +++ b/tools/tools/mid/mid-build @@ -2,8 +2,9 @@ # # Copyright (c) March 1998 Wolfram Schneider <wosch@FreeBSD.org> # -# create an Message-ID, In-Reply-To look(1) index database +# create a Message-ID, In-Reply-To look(1) index database # +# $FreeBSD$ TMPDIR=/var/tmp; export TMPDIR @@ -25,7 +26,7 @@ all () current () { ( cd $archive || exit 1 - find current/freebsd-* current/cvs-* -type f | + find current/freebsd-* current/cvs-* -type f | mid-master-index 1 mid-index $dbout/mid-current ) } @@ -35,7 +36,7 @@ if [ $# -le 0 ]; then exit 1 fi -for db +for db do case $db in current) current;; |