Stage 4 of dynamically linked root support. Add a big knob,

WITH_DYNAMICROOT, which will toggle the generation of dynamically-linked
binaries for installation in /bin and /sbin. It is currently off,
meaning that /bin and /sbin are still statically linked by default.

If something goes wrong (which I hope doesn't), this is what /rescue is
all about. Please do not try to use WITH_DYNAMICROOT and NO_RESCUE to
save space or some other equally silly reason. If you do and end up
having problems, you have been warned.
This commit is contained in:
gordon 2003-08-17 08:37:47 +00:00
parent 5901302929
commit b9d102ab04
2 changed files with 8 additions and 2 deletions

View File

@ -2,5 +2,8 @@
# $FreeBSD$
BINDIR?= /bin
NOSHARED?= YES
WARNS?= 6
.if !defined (WITH_DYNAMICROOT)
NOSHARED?= YES
.endif

View File

@ -2,5 +2,8 @@
# $FreeBSD$
BINDIR?= /sbin
NOSHARED?= YES
WARNS?= 2
.if !defined (WITH_DYNAMICROOT)
NOSHARED?= YES
.endif