diff options
author | Simon J. Gerraty <sjg@FreeBSD.org> | 2020-11-07 21:46:27 +0000 |
---|---|---|
committer | Simon J. Gerraty <sjg@FreeBSD.org> | 2020-11-07 21:46:27 +0000 |
commit | 956e45f6fb3e18b8e89b1341708db60c30bb9f27 (patch) | |
tree | b73e225c44ed4cf063ba39f347d06efaeccb3149 /contrib/bmake/make.1 | |
parent | f908d8247ef4d535007f608593a29d62b5df3873 (diff) | |
parent | 302da1a3d35c15cb29d76e0a939f8bcb13f7ad80 (diff) |
Update to bmake-20201101
Lots of new unit-tests increase code coverage.
Lots of refactoring, cleanup and simlpification to reduce
code size.
Fixes for Bug 223564 and 245807
Updates to dirdeps.mk and meta2deps.py
Notes
Notes:
svn path=/head/; revision=367465
Diffstat (limited to 'contrib/bmake/make.1')
-rw-r--r-- | contrib/bmake/make.1 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/bmake/make.1 b/contrib/bmake/make.1 index d3a3d539d5c1..32316cfd7b0a 100644 --- a/contrib/bmake/make.1 +++ b/contrib/bmake/make.1 @@ -1,4 +1,4 @@ -.\" $NetBSD: make.1,v 1.289 2020/08/28 17:15:04 rillig Exp $ +.\" $NetBSD: make.1,v 1.290 2020/11/01 20:24:45 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 August 28, 2020 +.Dd November 1, 2020 .Dt MAKE 1 .Os .Sh NAME @@ -1883,7 +1883,7 @@ has been defined and has commands associated with it. .Ar Expression may also be an arithmetic or string comparison. Variable expansion is -performed on both sides of the comparison, after which the integral +performed on both sides of the comparison, after which the numerical values are compared. A value is interpreted as hexadecimal if it is preceded by 0x, otherwise it is decimal; octal numbers are not supported. @@ -1893,7 +1893,7 @@ variable expansion, either the left or right hand side of a .Ql Ic == or .Ql Ic "!=" -operator is not an integral value, then +operator is not a numerical value, then string comparison is performed between the expanded variables. If no relational operator is given, it is assumed that the expanded |