aboutsummaryrefslogtreecommitdiff
path: root/bin/Makefile.inc
diff options
context:
space:
mode:
authorGordon Tetlow <gordon@FreeBSD.org>2003-11-16 04:57:28 +0000
committerGordon Tetlow <gordon@FreeBSD.org>2003-11-16 04:57:28 +0000
commit7e83e0de77dfee3e3242917c47c93bc05c553609 (patch)
treeef69922f4ddd652abaf7e2bbf64ae4aaac74e38e /bin/Makefile.inc
parent5859b37843fe0e67b408027f966022e1e2ba29c1 (diff)
downloadsrc-7e83e0de77dfee3e3242917c47c93bc05c553609.tar.gz
src-7e83e0de77dfee3e3242917c47c93bc05c553609.zip
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
Notes
Notes: svn path=/head/; revision=122778
Diffstat (limited to 'bin/Makefile.inc')
-rw-r--r--bin/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/Makefile.inc b/bin/Makefile.inc
index e0688dfe75c9..108488faf84e 100644
--- a/bin/Makefile.inc
+++ b/bin/Makefile.inc
@@ -4,6 +4,6 @@
BINDIR?= /bin
WARNS?= 6
-.if !defined(WITH_DYNAMICROOT)
+.if defined(NO_DYNAMICROOT)
NOSHARED?= YES
.endif