diff options
author | asmodai <asmodai@FreeBSD.org> | 2001-02-18 10:43:53 +0000 |
---|---|---|
committer | asmodai <asmodai@FreeBSD.org> | 2001-02-18 10:43:53 +0000 |
commit | 3065478332a49197980fb33f9c27a87e0bb7248d (patch) | |
tree | 351d3248daf53d0b7b71746b8ece4b26a49ff090 /usr.bin/make | |
parent | 0f00927ea0ae73e06c47bde5c0a01ade16bc3a08 (diff) | |
download | FreeBSD-src-3065478332a49197980fb33f9c27a87e0bb7248d.zip FreeBSD-src-3065478332a49197980fb33f9c27a87e0bb7248d.tar.gz |
Preceed/preceeding are not english words. Use precede and preceding.
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/PSD.doc/tutorial.ms | 4 | ||||
-rw-r--r-- | usr.bin/make/job.c | 2 | ||||
-rw-r--r-- | usr.bin/make/make.1 | 2 | ||||
-rw-r--r-- | usr.bin/make/parse.c | 2 | ||||
-rw-r--r-- | usr.bin/make/suff.c | 2 | ||||
-rw-r--r-- | usr.bin/make/targ.c | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/make/PSD.doc/tutorial.ms b/usr.bin/make/PSD.doc/tutorial.ms index db2d04e..7e4e8c6 100644 --- a/usr.bin/make/PSD.doc/tutorial.ms +++ b/usr.bin/make/PSD.doc/tutorial.ms @@ -602,7 +602,7 @@ likely freeze if you execute something that produces thousands of bytes of output (8 Kb is the limit on many UNIX systems). .LP The value of a variable may be retrieved by enclosing the variable -name in parentheses or curly braces and preceeding the whole thing +name in parentheses or curly braces and preceding the whole thing with a dollar sign. .LP For example, to set the variable CFLAGS to the string @@ -2640,7 +2640,7 @@ character is replaced by the unless it is preceded by a backslash. You are allowed to use any character except colon or exclamation point to separate the two strings. This so-called -delimiter character may be placed in either string by preceeding it +delimiter character may be placed in either string by preceding it with a backslash. .IP T .Ix 0 def :T diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c index 916ee3f..8fb15f2 100644 --- a/usr.bin/make/job.c +++ b/usr.bin/make/job.c @@ -2115,7 +2115,7 @@ end_loop: * Need to send the output to the screen. Null terminate it * first, overwriting the newline character if there was one. * So long as the line isn't one we should filter (according - * to the shell description), we print the line, preceeded + * to the shell description), we print the line, preceded * by a target banner if this target isn't the same as the * one for which we last printed something. * The rest of the data in the buffer are then shifted down diff --git a/usr.bin/make/make.1 b/usr.bin/make/make.1 index e3f1347..91a416d 100644 --- a/usr.bin/make/make.1 +++ b/usr.bin/make/make.1 @@ -1057,7 +1057,7 @@ any suffix so declared will have the directories on its search path (see .Ic .PATH ) placed in the .Va .INCLUDES -special variable, each preceeded by a +special variable, each preceded by a .Fl I flag. .It Ic .INTERRUPT diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c index 6304a41..7dc9e61 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -2281,7 +2281,7 @@ test_char: /* * Strip trailing blanks and tabs from the line. - * Do not strip a blank or tab that is preceeded by + * Do not strip a blank or tab that is preceded by * a '\' */ ep = line; diff --git a/usr.bin/make/suff.c b/usr.bin/make/suff.c index 0e58fb9..81d4216 100644 --- a/usr.bin/make/suff.c +++ b/usr.bin/make/suff.c @@ -846,7 +846,7 @@ Suff_GetPath (sname) * The searchPath field of all the suffixes is extended by the * directories in dirSearchPath. If paths were specified for the * ".h" suffix, the directories are stuffed into a global variable - * called ".INCLUDES" with each directory preceeded by a -I. The same + * called ".INCLUDES" with each directory preceded by a -I. The same * is done for the ".a" suffix, except the variable is called * ".LIBS" and the flag is -L. *----------------------------------------------------------------------- diff --git a/usr.bin/make/targ.c b/usr.bin/make/targ.c index 8e13e69..57b6b80 100644 --- a/usr.bin/make/targ.c +++ b/usr.bin/make/targ.c @@ -606,7 +606,7 @@ TargPrintNode (gnp, passp) * 0. * * Side Effects: - * The name of each file is printed preceeded by #\t + * The name of each file is printed preceded by #\t * *----------------------------------------------------------------------- */ |