<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/usr.bin/make/make.1, branch release/5.3.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>2004-11-04T19:12:42+00:00</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2004-11-04T19:12:42+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=3f86d8a2ea3f3265afaa1fd263b0004c5c000e69'/>
<id>3f86d8a2ea3f3265afaa1fd263b0004c5c000e69</id>
<content type='text'>
'RELENG_5_3_0_RELEASE'.

This commit was manufactured to restore the state of the 5.3-RELEASE image.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
'RELENG_5_3_0_RELEASE'.

This commit was manufactured to restore the state of the 5.3-RELEASE image.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make explicit that MAKEOBJDIRPREFIX and MAKOBJDIR must be set</title>
<updated>2004-08-09T16:13:54+00:00</updated>
<author>
<name>Hartmut Brandt</name>
<email>harti@FreeBSD.org</email>
</author>
<published>2004-08-09T16:13:54+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=8460583b9ff3270bb430ff6d9f4b23e1aed546b2'/>
<id>8460583b9ff3270bb430ff6d9f4b23e1aed546b2</id>
<content type='text'>
as environment variables and should not be set on make's command
line. They happen to work accidentially as command line variables
too when none of the sub-makes wants to play games with them (because
make is putting command line variables into the environment and will
find them there later on). Makefile.inc1 wants to change
MAKEOBJDIRPREFIX. In this case one cannot set it on the command line.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
as environment variables and should not be set on make's command
line. They happen to work accidentially as command line variables
too when none of the sub-makes wants to play games with them (because
make is putting command line variables into the environment and will
find them there later on). Makefile.inc1 wants to change
MAKEOBJDIRPREFIX. In this case one cannot set it on the command line.
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct the .Dd date. Pluralize 'assignment' in one place.</title>
<updated>2004-08-04T15:10:35+00:00</updated>
<author>
<name>Hartmut Brandt</name>
<email>harti@FreeBSD.org</email>
</author>
<published>2004-08-04T15:10:35+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=413d82a6fd3430ead7fc403f9066a7d9a6e993a2'/>
<id>413d82a6fd3430ead7fc403f9066a7d9a6e993a2</id>
<content type='text'>
Requested by: ru
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Requested by: ru
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct the description of the MFLAGS and .MAKEFLAGS variables. Add</title>
<updated>2004-08-03T19:14:14+00:00</updated>
<author>
<name>Hartmut Brandt</name>
<email>harti@FreeBSD.org</email>
</author>
<published>2004-08-03T19:14:14+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=3f3d0ec007a5c73970d7c4f12d1eec6491c86186'/>
<id>3f3d0ec007a5c73970d7c4f12d1eec6491c86186</id>
<content type='text'>
the MFLAGS target. Document that variable assignments from the MAKEFLAGS
environment variable and the .MAKEFLAGS and .MFLAGS target have the
same precedence as command line variable assignments.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the MFLAGS target. Document that variable assignments from the MAKEFLAGS
environment variable and the .MAKEFLAGS and .MFLAGS target have the
same precedence as command line variable assignments.
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump the date in .Dd for the recent '+' flag commit.</title>
<updated>2004-07-29T16:54:42+00:00</updated>
<author>
<name>Hartmut Brandt</name>
<email>harti@FreeBSD.org</email>
</author>
<published>2004-07-29T16:54:42+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=d01000750717a98d0de7eb5cde57ccb340881867'/>
<id>d01000750717a98d0de7eb5cde57ccb340881867</id>
<content type='text'>
Requested by: ru
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Requested by: ru
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement POSIX's '+' flag for command lines. This flag causes a line</title>
<updated>2004-07-29T14:29:23+00:00</updated>
<author>
<name>Hartmut Brandt</name>
<email>harti@FreeBSD.org</email>
</author>
<published>2004-07-29T14:29:23+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=34c9c4393190735f281eeef9c2055234e91c7778'/>
<id>34c9c4393190735f281eeef9c2055234e91c7778</id>
<content type='text'>
to be executed even when -n is given on the command line to make. This is
very handy for calls to submakes.

This is slightly changed from the original patch as obtained from NetBSD.
The NetBSD variant prints lines which have both '+' and '@' when -n
is specified. The commited version always obeys '@'.

Bump MAKE_VERSION so Makefiles can use this conditionally.

PR:		standards/66357 (partly)
Submitted by:	Mark Baushke &lt;mdb@juniper.net&gt;
Obtained from:	NetBSD
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
to be executed even when -n is given on the command line to make. This is
very handy for calls to submakes.

This is slightly changed from the original patch as obtained from NetBSD.
The NetBSD variant prints lines which have both '+' and '@' when -n
is specified. The commited version always obeys '@'.

Bump MAKE_VERSION so Makefiles can use this conditionally.

PR:		standards/66357 (partly)
Submitted by:	Mark Baushke &lt;mdb@juniper.net&gt;
Obtained from:	NetBSD
</pre>
</div>
</content>
</entry>
<entry>
<title>Make it clearer what means 'won't work' for .if string == ${VAR}.</title>
<updated>2004-07-19T14:42:57+00:00</updated>
<author>
<name>Hartmut Brandt</name>
<email>harti@FreeBSD.org</email>
</author>
<published>2004-07-19T14:42:57+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=e9345b8636dd8b9b2c579f38476538199f85d52c'/>
<id>e9345b8636dd8b9b2c579f38476538199f85d52c</id>
<content type='text'>
Replace the use of '=' in conditionals in the examples
by the more correct '=='.

Clarify the example explaining that .for expansion takes place before
.if handling by showing the correct code instead of saying 'the other
way around'. Change a variable name there so the example is more parseable
to the human reader.

PR:		docs/65400
Submitted by:	Roman Neuhauser &lt;neuhauser@chello.cz&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Replace the use of '=' in conditionals in the examples
by the more correct '=='.

Clarify the example explaining that .for expansion takes place before
.if handling by showing the correct code instead of saying 'the other
way around'. Change a variable name there so the example is more parseable
to the human reader.

PR:		docs/65400
Submitted by:	Roman Neuhauser &lt;neuhauser@chello.cz&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove the dependency of the :C/regexp/replacement/ variable modifier</title>
<updated>2004-07-18T02:26:30+00:00</updated>
<author>
<name>Giorgos Keramidas</name>
<email>keramida@FreeBSD.org</email>
</author>
<published>2004-07-18T02:26:30+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=ebca193729a18c2db7deb6faa6cbc2918d53710a'/>
<id>ebca193729a18c2db7deb6faa6cbc2918d53710a</id>
<content type='text'>
from the :S modifier which follows a bit further below.  This way the
reader can read each of these two descriptions without having to jump
back and forth in the manpage.

PR:		docs/26943
Submitted by:	Alex Kapranoff &lt;alex@kapran.bitmcnit.bryansk.su&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
from the :S modifier which follows a bit further below.  This way the
reader can read each of these two descriptions without having to jump
back and forth in the manpage.

PR:		docs/26943
Submitted by:	Alex Kapranoff &lt;alex@kapran.bitmcnit.bryansk.su&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Mechanically kill hard sentence breaks.</title>
<updated>2004-07-02T22:22:35+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2004-07-02T22:22:35+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=6a3e8b0adc8c622ae61275a94d5d869980a68069'/>
<id>6a3e8b0adc8c622ae61275a94d5d869980a68069</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>manlint</title>
<updated>2004-07-02T12:34:13+00:00</updated>
<author>
<name>Oliver Eikemeier</name>
<email>eik@FreeBSD.org</email>
</author>
<published>2004-07-02T12:34:13+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=406e58e038a6dec73f77ca3a1d72eb43ee89e1aa'/>
<id>406e58e038a6dec73f77ca3a1d72eb43ee89e1aa</id>
<content type='text'>
Obtained from:	ru
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Obtained from:	ru
</pre>
</div>
</content>
</entry>
</feed>
