Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make Make some dashes em-dashes (based on patch from...



details:   https://anonhg.NetBSD.org/src/rev/74501c30e8aa
branches:  trunk
changeset: 768533:74501c30e8aa
user:      sjg <sjg%NetBSD.org@localhost>
date:      Thu Aug 18 15:36:51 2011 +0000

description:
Make some dashes em-dashes (based on patch from Andrew O. Shadoura).
Note behavior of .META flag wrt out-of-date.

diffstat:

 usr.bin/make/make.1 |  15 ++++++++-------
 1 files changed, 8 insertions(+), 7 deletions(-)

diffs (64 lines):

diff -r 8818bf20e4d3 -r 74501c30e8aa usr.bin/make/make.1
--- a/usr.bin/make/make.1       Thu Aug 18 15:19:30 2011 +0000
+++ b/usr.bin/make/make.1       Thu Aug 18 15:36:51 2011 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: make.1,v 1.193 2011/06/30 20:09:42 wiz Exp $
+.\"    $NetBSD: make.1,v 1.194 2011/08/18 15:36:51 sjg 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 May 29, 2011
+.Dd August 18, 2011
 .Dt MAKE 1
 .Os
 .Sh NAME
@@ -126,7 +126,7 @@
 .Nm
 are to print debugging information.
 Unless the flags are preceded by
-.Ql -
+.Ql \-
 they are added to the
 .Va MAKEFLAGS
 environment variable and will be processed by any child make processes.
@@ -1330,7 +1330,7 @@
 modifier, the words are indexed both forwards using positive integers
 (where index 1 represents the first word),
 and backwards using negative integers
-(where index -1 represents the last word).
+(where index \-1 represents the last word).
 .Pp
 The
 .Ar range
@@ -1693,6 +1693,7 @@
 Usage in conjunction with
 .Ic .MAKE
 is the most likely case.
+In "meta" mode, the target is out-of-date if the meta file is missing.
 .It Ic .NOMETA
 Do not create a meta file for the target.
 Meta files are also not created for
@@ -1944,8 +1945,8 @@
 Example:
 .Bd -literal
 \&.SHELL: name=ksh path=/bin/ksh hasErrCtl=true \e
-       check="set -e" ignore="set +e" \e
-       echo="set -v" quiet="set +v" filter="set +v" \e
+       check="set \-e" ignore="set +e" \e
+       echo="set \-v" quiet="set +v" filter="set +v" \e
        echoFlag=v errFlag=e newline="'\en'"
 .Ed
 .It Ic .SILENT
@@ -1966,7 +1967,7 @@
 .Bd -literal
 \&.SUFFIXES: .o
 \&.c.o:
-       cc -o ${.TARGET} -c ${.IMPSRC}
+       cc \-o ${.TARGET} \-c ${.IMPSRC}
 .Ed
 .El
 .Sh ENVIRONMENT



Home | Main Index | Thread Index | Old Index