Deleted Added
full compact
make.1 (162816) make.1 (165628)
1.\" Copyright (c) 1990, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

--- 16 unchanged lines hidden (view full) ---

25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\" @(#)make.1 8.8 (Berkeley) 6/13/95
1.\" Copyright (c) 1990, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

--- 16 unchanged lines hidden (view full) ---

25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\" @(#)make.1 8.8 (Berkeley) 6/13/95
33.\" $FreeBSD: head/usr.bin/make/make.1 162816 2006-09-29 21:17:10Z ru $
33.\" $FreeBSD: head/usr.bin/make/make.1 165628 2006-12-29 13:08:46Z yar $
34.\"
35.Dd April 8, 2006
36.Dt MAKE 1
37.Os
38.Sh NAME
39.Nm make
40.Nd maintain program dependencies
41.Sh SYNOPSIS

--- 1544 unchanged lines hidden (view full) ---

1586\&.for h in ${HDRS:S;^;${.CURDIR}/;}
1587 ...
1588\&.endfor
1589.Ed
1590.Pp
1591A trailing backslash in a variable value defined on the command line causes
1592the delimiting space in the
1593.Ev MAKEFLAGS
34.\"
35.Dd April 8, 2006
36.Dt MAKE 1
37.Os
38.Sh NAME
39.Nm make
40.Nd maintain program dependencies
41.Sh SYNOPSIS

--- 1544 unchanged lines hidden (view full) ---

1586\&.for h in ${HDRS:S;^;${.CURDIR}/;}
1587 ...
1588\&.endfor
1589.Ed
1590.Pp
1591A trailing backslash in a variable value defined on the command line causes
1592the delimiting space in the
1593.Ev MAKEFLAGS
1594environment variable to be preceeded by that backslash.
1594environment variable to be preceded by that backslash.
1595That causes a submake to not treat that space as a word delimiter.
1596Fixing this requires a larger rewrite of the code handling command line
1597macros and assignments to
1598.Va .MAKEFLAGS .
1595That causes a submake to not treat that space as a word delimiter.
1596Fixing this requires a larger rewrite of the code handling command line
1597macros and assignments to
1598.Va .MAKEFLAGS .