Module Name: src
Committed By: sjg
Date: Sat Feb 26 01:17:24 UTC 2011
Modified Files:
src/usr.bin/make: make.1
Log Message:
Fix rendering of :? example
To generate a diff of this commit:
cvs rdiff -u -r1.182 -r1.183 src/usr.bin/make/make.1
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/make/make.1
diff -u src/usr.bin/make/make.1:1.182 src/usr.bin/make/make.1:1.183
--- src/usr.bin/make/make.1:1.182 Tue Sep 14 11:57:03 2010
+++ src/usr.bin/make/make.1 Sat Feb 26 01:17:24 2011
@@ -1,4 +1,4 @@
-.\" $NetBSD: make.1,v 1.182 2010/09/14 11:57:03 wiz Exp $
+.\" $NetBSD: make.1,v 1.183 2011/02/26 01:17:24 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 September 13, 2010
+.Dd February 25, 2011
.Dt MAKE 1
.Os
.Sh NAME
@@ -1173,7 +1173,7 @@
.Dl ${NUMBERS:M42:?match:no}
which actually tests defined(NUMBERS),
to determine is any words match "42" you need to use something like:
-.Dl ${${NUMBERS:M42} != "":?match:no} .
+.Dl ${"${NUMBERS:M42}" != \&"\&":?match:no} .
.It Ar :old_string=new_string
This is the
.At V