diff options
| author | rillig <rillig@NetBSD.org> | 2006-06-29 22:01:17 +0000 |
|---|---|---|
| committer | rillig <rillig@NetBSD.org> | 2006-06-29 22:01:17 +0000 |
| commit | a3ea8b9d595cf152aaa082cd30461b2917f43b75 (patch) | |
| tree | fb9b6e5ef1a944a8c525442b345d5cdcc973b95e /usr.bin/make/make.1 | |
| parent | fbdae7393a2efb6791315666dafc3ac3f712cdd5 (diff) | |
Fixed the bug reported in PR 33866, which is that the :Q operator does not
handle newlines correctly. Ok'ed by christos.
Diffstat (limited to 'usr.bin/make/make.1')
| -rw-r--r-- | usr.bin/make/make.1 | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/usr.bin/make/make.1 b/usr.bin/make/make.1 index 9057d7af446..27a7dfda50a 100644 --- a/usr.bin/make/make.1 +++ b/usr.bin/make/make.1 @@ -1,4 +1,4 @@ -.\" $NetBSD: make.1,v 1.126 2006/06/17 02:15:22 reed Exp $ +.\" $NetBSD: make.1,v 1.127 2006/06/29 22:01:17 rillig Exp $ .\" .\" Copyright (c) 1990, 1993 .\" The Regents of the University of California. All rights reserved. @@ -29,7 +29,7 @@ .\" .\" from: @(#)make.1 8.4 (Berkeley) 3/19/94 .\" -.Dd March 18, 2006 +.Dd June 29, 2006 .Dt MAKE 1 .Os .Sh NAME @@ -1574,13 +1574,16 @@ It is typically identical to The flag to pass the shell to enable error checking. .It Ar echoFlag The flag to pass the shell to enable command echoing. +.It Ar newline +The string literal to pass the shell that results in a single newline +character when used outside of any quoting characters. .El Example: .Bd -literal \&.SHELL: name=ksh path=/bin/ksh hasErrCtl=true \\ check="set -e" ignore="set +e" \\ echo="set -v" quiet="set +v" filter="set +v" \\ - echoFlag=v errFlag=e + echoFlag=v errFlag=e newline="'\\n'" .Ed .It Ic .SILENT Apply the |
