Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 May 2013 15:56:35 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r250457 - in stable/9/share: examples/etc man/man5
Message-ID:  <201305101556.r4AFuZJu040052@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 )



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305101556.r4AFuZJu040052>