summaryrefslogtreecommitdiff
path: root/usr.bin/make
diff options
context:
space:
mode:
authorJeroen Ruigrok van der Werven <asmodai@FreeBSD.org>2001-02-18 10:43:53 +0000
committerJeroen Ruigrok van der Werven <asmodai@FreeBSD.org>2001-02-18 10:43:53 +0000
commitd7d97eb0aa6f7315a98a6010d82c4fc71bd2211c (patch)
treef8fb6added0ae23b19c6ae7f29f514a212a31fde /usr.bin/make
parent7c637968288584dda60170d7c2977973e20ae503 (diff)
downloadsrc-test2-d7d97eb0aa6f7315a98a6010d82c4fc71bd2211c.tar.gz
src-test2-d7d97eb0aa6f7315a98a6010d82c4fc71bd2211c.zip
Notes
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/PSD.doc/tutorial.ms4
-rw-r--r--usr.bin/make/job.c2
-rw-r--r--usr.bin/make/make.12
-rw-r--r--usr.bin/make/parse.c2
-rw-r--r--usr.bin/make/suff.c2
-rw-r--r--usr.bin/make/targ.c2
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 db2d04eb2fd1..7e4e8c6a5037 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 916ee3f1f620..8fb15f2c512a 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 e3f1347ab49e..91a416db6582 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 6304a41483ab..7dc9e61073e4 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 0e58fb9ff7ef..81d4216190a7 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 8e13e69f39ff..57b6b80adf3f 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
*
*-----------------------------------------------------------------------
*/