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
This commit is contained in:
Bryan Drewery 2017-09-08 19:20:42 +00:00
parent c24e7f3fd9
commit 5179958a28
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=323323

View File

@ -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