svn commit: r323323 - head/share/mk

Bryan Drewery bdrewery at FreeBSD.org
Fri Sep 8 19:20:44 UTC 2017


Author: bdrewery
Date: Fri Sep  8 19:20:42 2017
New Revision: 323323
URL: https://svnweb.freebsd.org/changeset/base/323323

Log:
  Tweak comment for install -S usage since it does not impact the build.
  
  The -S flag is currently ignored for builds since we filter through
  tools/install.sh that is intended for both non-root and cross-builds.
  
  Sponsored by:	Dell EMC Isilon
  X-MFC-With:	r322565

Modified:
  head/share/mk/bsd.lib.mk

Modified: head/share/mk/bsd.lib.mk
==============================================================================
--- head/share/mk/bsd.lib.mk	Fri Sep  8 18:32:13 2017	(r323322)
+++ head/share/mk/bsd.lib.mk	Fri Sep  8 19:20:42 2017	(r323323)
@@ -327,9 +327,9 @@ _EXTRADEPEND:
 SHLINSTALLFLAGS+= -fschg
 .endif
 .endif
-# Install libraries with -S to avoid linker races with WORLDTMP and risk
-# of modifying in-use libraries when installing to a running system.
-# It is safe to avoid this for NO_ROOT builds that are only creating an image.
+# Install libraries with -S to avoid risk of modifying in-use libraries when
+# installing to a running system.  It is safe to avoid this for NO_ROOT builds
+# that are only creating an image.
 .if !defined(NO_SAFE_LIBINSTALL) && !defined(NO_ROOT)
 SHLINSTALLFLAGS+= -S
 .endif


More information about the svn-src-all mailing list