summaryrefslogtreecommitdiff
path: root/usr.bin/make
diff options
context:
space:
mode:
authorWilliam Yodlowsky <william@cvs.openbsd.org>2013-02-19 02:00:58 +0000
committerWilliam Yodlowsky <william@cvs.openbsd.org>2013-02-19 02:00:58 +0000
commitf0c3c6a964a262bb036d931de408ebe95d76001c (patch)
tree935a9609470c553a6c64730d5439d8f180e460a1 /usr.bin/make
parentfc839df600415f916eb7c9bf7d55c79ead582531 (diff)
Add missing trailing slash on the :S modifier in the BUGS section.
ok espie
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/make.16
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/make.1 b/usr.bin/make/make.1
index c17e620c66e..2515eb6d54e 100644
--- a/usr.bin/make/make.1
+++ b/usr.bin/make/make.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: make.1,v 1.101 2013/02/04 14:44:58 espie Exp $
+.\" $OpenBSD: make.1,v 1.102 2013/02/19 02:00:57 william Exp $
.\" $NetBSD: make.1,v 1.18 1997/03/10 21:19:53 christos Exp $
.\"
.\" Copyright (c) 1990, 1993
@@ -30,7 +30,7 @@
.\"
.\" from: @(#)make.1 8.4 (Berkeley) 3/19/94
.\"
-.Dd $Mdocdate: February 4 2013 $
+.Dd $Mdocdate: February 19 2013 $
.Dt MAKE 1
.Os
.Sh NAME
@@ -1619,7 +1619,7 @@ In a .for loop, only the variable value is used; assignments will be
evaluated later, e.g., in
.Bd -literal -offset indent
\&.for I in a b c d
-I:=${I:S/a/z}
+I:=${I:S/a/z/}
A+=$I
\&.endfor
.Ed