Source-Changes-HG archive

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

[src/trunk]: src/usr.bin/make document the SYSV ${VAR:old=new} corner cases.



details:   https://anonhg.NetBSD.org/src/rev/68eba8f6a9a9
branches:  trunk
changeset: 931371:68eba8f6a9a9
user:      christos <christos%NetBSD.org@localhost>
date:      Mon Apr 27 20:03:08 2020 +0000

description:
document the SYSV ${VAR:old=new} corner cases.

diffstat:

 usr.bin/make/make.1 |  27 +++++++++++++++++++++++++--
 1 files changed, 25 insertions(+), 2 deletions(-)

diffs (48 lines):

diff -r bd63fe632770 -r 68eba8f6a9a9 usr.bin/make/make.1
--- a/usr.bin/make/make.1       Mon Apr 27 19:33:48 2020 +0000
+++ b/usr.bin/make/make.1       Mon Apr 27 20:03:08 2020 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: make.1,v 1.279 2020/02/04 16:28:29 wiz Exp $
+.\"    $NetBSD: make.1,v 1.280 2020/04/27 20:03:08 christos 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 February 16, 2019
+.Dd April 27, 2020
 .Dt MAKE 1
 .Os
 .Sh NAME
@@ -1428,6 +1428,29 @@
 .Ar old_string
 to be replaced in
 .Ar new_string .
+If only
+.Ar old_string
+contains the pattern matching character
+.Ar % ,
+and 
+.Ar old_string
+matches, then the result is the
+.Ar new_string .
+If only the
+.Ar new_string
+contains the pattern matching character
+.Ar % ,
+then it is not treated specially and it is printed as a literal
+.Ar %
+on match.
+If there is more than one pattern matching character
+.Ar ( % )
+in either the
+.Ar new_string
+or
+.Ar old_string ,
+only the first instance is treated specially (as the pattern character);
+all subsequent instances are treated as regular characters
 .Pp
 Variable expansion occurs in the normal fashion inside both
 .Ar old_string



Home | Main Index | Thread Index | Old Index