From 5179958a28f4e0ada2859799d8f9a23bfe2aa600 Mon Sep 17 00:00:00 2001 From: Bryan Drewery Date: Fri, 8 Sep 2017 19:20:42 +0000 Subject: [PATCH] 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 --- share/mk/bsd.lib.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/share/mk/bsd.lib.mk b/share/mk/bsd.lib.mk index 40db23cc933..db66b7f189b 100644 --- a/share/mk/bsd.lib.mk +++ b/share/mk/bsd.lib.mk @@ -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