svn commit: r250457 - in stable/9/share: examples/etc man/man5
Bryan Drewery
bdrewery at FreeBSD.org
Fri May 10 15:56:35 UTC 2013
Author: bdrewery (ports committer)
Date: Fri May 10 15:56:34 2013
New Revision: 250457
URL: http://svnweb.freebsd.org/changeset/base/250457
Log:
MFC r249952:
Fix examples for overriding INSTALL to not suggest hardcoding
'install' since it breaks buildworld after the introduction and
use of 'install -l' in r245752. Overriding INSTALL causes
/usr/bin/install to be used instead of the proper
/usr/src/tools/install.sh which handles the new flag.
Modified:
stable/9/share/examples/etc/make.conf
stable/9/share/man/man5/make.conf.5
Directory Properties:
stable/9/share/examples/ (props changed)
stable/9/share/examples/etc/ (props changed)
stable/9/share/man/man5/ (props changed)
Modified: stable/9/share/examples/etc/make.conf
==============================================================================
--- stable/9/share/examples/etc/make.conf Fri May 10 14:39:22 2013 (r250456)
+++ stable/9/share/examples/etc/make.conf Fri May 10 15:56:34 2013 (r250457)
@@ -91,7 +91,7 @@
#COPTFLAGS= -O -pipe
#
# Compare before install
-#INSTALL=install -C
+#INSTALL+= -C
#
# Mtree will follow symlinks
#MTREE_FOLLOWS_SYMLINKS= -L
Modified: stable/9/share/man/man5/make.conf.5
==============================================================================
--- stable/9/share/man/man5/make.conf.5 Fri May 10 14:39:22 2013 (r250456)
+++ stable/9/share/man/man5/make.conf.5 Fri May 10 15:56:34 2013 (r250457)
@@ -24,7 +24,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd January 21, 2013
+.Dd April 26, 2013
.Dt MAKE.CONF 5
.Os
.Sh NAME
@@ -205,7 +205,7 @@ instead of
the default install command.
To install only files for which the target differs or does not exist, use
.Bd -literal -offset indent
-INSTALL="install -C"
+INSTALL+= -C
.Ed
Note that some makefiles (including those in
.Pa /usr/share/mk )
More information about the svn-src-stable-9
mailing list