Change the default for binaries in /bin and /sbin from statically to
dynamically linked. This has been a long time coming with the move of critical libraries from /usr/lib to /lib. If you don't feel comfortable with dynamically linked binaries in your root partition, now is the time to define NO_DYNAMICROOT in your make.conf. Approved by: re
This commit is contained in:
parent
6d8eca04b9
commit
e30aeee3f3
@ -4,6 +4,6 @@
|
||||
BINDIR?= /bin
|
||||
WARNS?= 6
|
||||
|
||||
.if !defined(WITH_DYNAMICROOT)
|
||||
.if defined(NO_DYNAMICROOT)
|
||||
NOSHARED?= YES
|
||||
.endif
|
||||
|
@ -4,6 +4,6 @@
|
||||
BINDIR?= /sbin
|
||||
WARNS?= 2
|
||||
|
||||
.if !defined(WITH_DYNAMICROOT)
|
||||
.if defined(NO_DYNAMICROOT)
|
||||
NOSHARED?= YES
|
||||
.endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user